5 lines
151 B
Rexx
5 lines
151 B
Rexx
print_all: procedure
|
|
do j=1 for arg()
|
|
say arg(j)
|
|
end /*j*/
|
|
return
|