Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
j=2
|
||||
abc.j= -4.12
|
||||
|
||||
|
||||
say 'variable abc.2 (length' length(abc.2)')=' abc.2
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
/* REXX shows the "equivalent" to PL/I's PUT DATA for a simple variable */
|
||||
/* put_data2('a.') to show all a.tail values isn't that easy :-) */
|
||||
j=2
|
||||
abc.j= -4.12
|
||||
Say put_data('abc.2') /* Put Data(abc(2)) */
|
||||
string=put_data('abc.2') /* Put string(string) Data(abc(2)) */
|
||||
Say string
|
||||
Exit
|
||||
put_data:
|
||||
Parse Arg variable
|
||||
return(variable'='''value(variable)'''')
|
||||
Loading…
Add table
Add a link
Reference in a new issue