RosettaCodeData/Task/Collections/OoRexx/collections-7.rexx
2023-07-01 13:44:08 -04:00

4 lines
74 B
Rexx

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