RosettaCodeData/Task/Input-loop/REXX/input-loop-4.rexx
2015-02-20 00:35:01 -05:00

6 lines
220 B
Rexx

/*REXX program reads from the (console) default input stream until null*/
do until _==''
parse pull _
end /*until ...*/
exit /*stick a fork in it, we're done.*/