Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
6
Task/Generic-swap/REXX/generic-swap-1.rexx
Normal file
6
Task/Generic-swap/REXX/generic-swap-1.rexx
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
a = 'I see you.'
|
||||
b = -6
|
||||
|
||||
_temp_ = a /*swap ··· */
|
||||
a = b /* A ··· */
|
||||
b = _temp_ /* and B */
|
||||
4
Task/Generic-swap/REXX/generic-swap-2.rexx
Normal file
4
Task/Generic-swap/REXX/generic-swap-2.rexx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
a = "bull feathers"
|
||||
b = 10
|
||||
|
||||
a= value('b', a) /*swap A and B */
|
||||
4
Task/Generic-swap/REXX/generic-swap-3.rexx
Normal file
4
Task/Generic-swap/REXX/generic-swap-3.rexx
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
a = -199e-12
|
||||
b = 12.
|
||||
|
||||
parse value a b with b a /*swap A and B */
|
||||
Loading…
Add table
Add a link
Reference in a new issue