mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
14 lines
140 B
ObjectPascal
14 lines
140 B
ObjectPascal
unit uw2984;
|
|
interface
|
|
|
|
procedure System(const s:string);
|
|
|
|
implementation
|
|
|
|
procedure System(const s:string);
|
|
begin
|
|
writeln(s);
|
|
end;
|
|
|
|
end.
|