RosettaCodeData/Task/Collections/Raven/collections-5.raven
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
288 B
Text

42 a_list push # append an item
a_list pop # remove last item
42 a_list shove # prepend an item
a_list shift # remove first item
42 a_list 1 insert # insert item second, shuffling others down
a_list 1 remove # retrieve second item, shuffling others up