Skip to content

Latest commit

 

History

11 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

2 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages