NetBSD/share/doc/ps1/04.pascal/copydata.p
1993-03-21 09:45:37 +00:00

16 lines
245 B
OpenEdge ABL

program copydata(data, output);
var
ch: char;
data: text;
begin
reset(data);
while not eof(data) do begin
while not eoln(data) do begin
read(data, ch);
write(ch)
end;
readln(data);
writeln
end
end { copydata }.