fpc/docs/sysutex/ex86.pp
1999-06-05 10:49:59 +00:00

18 lines
279 B
ObjectPascal

Program Example86;
{ This program demonstrates the TrimRight function }
Uses sysutils;
{$H+}
Procedure Testit (S : String);
begin
Writeln ('"',TrimRight(S),'"');
end;
Begin
Testit (' ha ha what gets lost ? ');
Testit (#10#13'haha ');
Testit (' ');
End.