RosettaCodeData/Task/Collections/OoRexx/collections-6.rexx
2017-09-25 22:28:19 +02:00

4 lines
86 B
Rexx

d = .directory~new
d['abc'] = 1
d['def'] = 2
say d['abc'] d['def'] -- displays "1 2"