NetBSD/share/doc/ps1/04.pascal/kat.p

14 lines
179 B
OpenEdge ABL

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