Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,3 @@
do while stream(stdin, "State") <> "NOTREADY"
call charout ,charin(stdin)
end

View file

@ -0,0 +1,4 @@
Do Until input=''
input=linein(stdin)
Call lineout ,input
End

View file

@ -0,0 +1,5 @@
/* -- AREXX -- */
do until eof(stdin)
l = readln(stdin)
say l
end

View file

@ -0,0 +1,4 @@
/*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.*/

View file

@ -0,0 +1,4 @@
/*REXX program reads from the (console) default input stream until null*/
do until _==''
_= linein()
end /*until*/ /*stick a fork in it, we're done.*/