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

5 lines
191 B
Rexx
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/*REXX program reads from the (console) default input stream until null*/
do until _==''
_= linein()
end /*until*/ /*stick a fork in it, we're done.*/