5 lines
78 B
Rexx
5 lines
78 B
Rexx
|
|
/*REXX*/ parse arg a b c
|
||
|
|
say f(a,b,c)
|
||
|
|
exit
|
||
|
|
f:return arg(1)arg(3)arg(3)arg(2)
|