RosettaCodeData/Task/Associative-array-Creation/Toka/associative-array-creation.toka
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

14 lines
323 B
Text

needs asarray
( create an associative array )
1024 cells is-asarray foo
( store 100 as the "first" element in the array )
100 " first" foo asarray.put
( store 200 as the "second" element in the array )
200 " second" foo asarray.put
( obtain and print the values )
" first" foo asarray.get .
" second" foo asarray.get .