4 lines
82 B
Rexx
4 lines
82 B
Rexx
t = .table~new
|
|
t['abc'] = 1
|
|
t['def'] = 2
|
|
say t['abc'] t['def'] -- displays "1 2"
|