mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 14:08:05 +02:00
17 lines
205 B
ObjectPascal
17 lines
205 B
ObjectPascal
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
var
|
|
S : String;
|
|
|
|
begin
|
|
Writeln('{$IFNDEF FPC_DOTTEDUNITS}');
|
|
While not EOF do
|
|
begin
|
|
Readln(S);
|
|
Writeln(S);
|
|
end;
|
|
Writeln('{$ENDIF FPC_DOTTEDUNITS}');
|
|
end.
|