-
Notifications
You must be signed in to change notification settings - Fork 0
draegtun/Io-Array
Folders and files
| Name | Name | 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
Watchers
Forks
Packages 0
No packages published