fpc/tests/webtbs/uw2984.pp
2004-05-02 15:21:20 +00:00

14 lines
140 B
ObjectPascal

unit uw2984;
interface
procedure System(const s:string);
implementation
procedure System(const s:string);
begin
writeln(s);
end;
end.