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

5 lines
191 B
Rexx
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
/*REXX program reads from the (console) default input stream until null*/
do until _==''
2019-09-12 10:33:56 -07:00
_= linein()
end /*until*/ /*stick a fork in it, we're done.*/