Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/File-input-output/PL-I/file-input-output.pli
Normal file
8
Task/File-input-output/PL-I/file-input-output.pli
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
declare in file, out file;
|
||||
|
||||
open file (in) title ('/INPUT.TXT,type(text),recsize(100)') input;
|
||||
open file (out) title ('/OUTPUT.TXT,type(text),recsize(100') output;
|
||||
do forever;
|
||||
get file (in) edit (line) (L);
|
||||
put file (out) edit (line) (A);
|
||||
end;
|
||||
Loading…
Add table
Add a link
Reference in a new issue