20 lines
289 B
Text
20 lines
289 B
Text
#create a new list
|
|
local :l []
|
|
|
|
#add something to it
|
|
push-to l "Hi"
|
|
|
|
#add something else to it
|
|
push-to l "Boo"
|
|
|
|
#the list could also have been built up this way:
|
|
local :l2 [ "Hi" "Boo" ]
|
|
|
|
#this prints 2
|
|
!print len l
|
|
|
|
#this prints Hi
|
|
!print get-from l 0
|
|
|
|
#this prints Boo
|
|
!print pop-from l
|