RosettaCodeData/Task/Variables/OoRexx/variables.rexx

10 lines
114 B
Rexx
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
a.=4711
Say 'before sub a.3='a.3
Call sub a.
Say ' after sub a.3='a.3
Exit
sub: Procedure
use Arg a.
a.3=3
Return