Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 deletions
|
|
@ -1,3 +1,4 @@
|
|||
{{omit from|Lily}}
|
||||
Create a variable with a user-defined name. The variable name should ''not'' be written in the program text, but should be taken from the user dynamically.
|
||||
|
||||
;See also
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/*REXX program to show use of dynamic variable names. */
|
||||
|
||||
parse arg new value
|
||||
say 'Arguments as they were entered via the command line =' new value
|
||||
/*REXX program demonstrates the use of dynamic variable names & setting a val.*/
|
||||
parse arg newVar newValue
|
||||
say 'Arguments as they were entered via the command line: ' newVar newValue
|
||||
say
|
||||
call value new,value
|
||||
say 'The newly assigned value (as per the VALUE bif)------' new value(new)
|
||||
call value newVar, newValue
|
||||
say 'The newly assigned value (as per the VALUE bif)------' newVar value(newVar)
|
||||
/*stick a fork in it, we're all done. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue