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

5 lines
192 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 _==''
parse pull _
2019-09-12 10:33:56 -07:00
end /*until*/ /*stick a fork in it, we're done.*/