RosettaCodeData/Task/Associative-array-Creation/REXX/associative-array-creation-1.rexx

11 lines
357 B
Rexx
Raw Permalink Normal View History

2013-04-10 14:58:50 -07:00
/* Rexx */
key0 = '0'
key1 = 'key0'
2015-02-20 00:35:01 -05:00
stem. = '.' /* Initialize the associative array 'stem' to '.' */
stem.key1 = 'value0' /* Set a specific key/value pair */
2013-04-10 14:58:50 -07:00
2015-02-20 00:35:01 -05:00
Say 'stem.key0= 'stem.key /* Display a value for a key that wasn't set */
Say 'stem.key1= 'stem.key1 /* Display a value for a key that was set */