blob: 66869cb1ac4a68270b230eb4d4a00b0aff31d383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Program Example84;
{ This program demonstrates the Trim function }
Uses sysutils;
{$H+}
Procedure Testit (S : String);
begin
Writeln ('"',Trim(S),'"');
end;
Begin
Testit (' ha ha what gets lost ? ');
Testit (#10#13'haha ');
Testit (' ');
End.
|