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

6 lines
70 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/* -- AREXX -- */
do until eof(stdin)
l = readln(stdin)
say l
end