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

5 lines
78 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/*REXX*/ parse arg a b c
say f(a,b,c)
exit
f:return arg(1)arg(3)arg(3)arg(2)