|
|
DataMuseum.dkPresents historical artifacts from the history of: CP/M |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about CP/M Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 384 (0x180)
Types: TextFile
Names: »WAGE.PLI«
└─⟦811637d18⟧ Bits:30005383 Microsoft COBOL-80 v4.01
└─⟦this⟧ »WAGE.PLI«
copy:
proc options(main);
dcl
(input,output) file;
open file (input) stream env(b(8192))
title('$1.$1');
open file (output) stream output env(b(8192))
title('$2.$2');
dcl
buff char(254) varying;
do while('1'b);
read file (input) into (buff);
write file (output) from (buff);
end;
end copy;
«eof»