4 lines
191 B
Rexx
4 lines
191 B
Rexx
/*REXX program reads from the (console) default input stream until null*/
|
|
do until _==''
|
|
_= linein()
|
|
end /*until*/ /*stick a fork in it, we're done.*/
|