Skip to content

draegtun/Io-Array

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
Basic Array object cloned from the List object.

Simple synopsis:

  array := Array with("zero", "one", "two", "three", "four")

  array[4]              # => "four"
  array[1, 3, 0]        # => list("one", "three", "zero")
  array[1 to(3)]        # => list("one", "two", "three")
  array << "five"       # => list("zero", "one", "two", "three", "four", "five")
  array[5] << "FIVE"    # => list("zero", "one", "two", "three", "four", "FIVE")

From playing around with small acorns do big wonky trees grow :)

/I3az/

About

Basic Array object cloned from the List object.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages