RosettaCodeData/Task/Input-loop/REXX/input-loop-4.rexx
2023-07-01 13:44:08 -04:00

4 lines
192 B
Rexx

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