RosettaCodeData/Task/Input-loop/REXX/input-loop-3.rexx

6 lines
70 B
Rexx

/* -- AREXX -- */
do until eof(stdin)
l = readln(stdin)
say l
end