RosettaCodeData/Task/Interactive-programming/REXX/interactive-programming-1.rexx

5 lines
78 B
Rexx
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
/*REXX*/ parse arg a b c
say f(a,b,c)
exit
f:return arg(1)arg(3)arg(3)arg(2)