pascalabcnet/TestSuite/CompilationSamples/Eoln.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

9 lines
129 B
ObjectPascal

// Äåìîíñòðàöèÿ ðàáîòû ôóíêöèè eoln
begin
while not eoln do
begin
var c: char;
read(c);
write(c,' ');
end;
end.