RosettaCodeData/Task/Associative-array-Creation/Toka/associative-array-creation.toka

15 lines
323 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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 .