mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
19 lines
208 B
ObjectPascal
19 lines
208 B
ObjectPascal
program example;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
procedure foo(out c: char); inline;
|
|
begin
|
|
c := #32;
|
|
end;
|
|
|
|
var s: String;
|
|
|
|
begin
|
|
s:=#42;
|
|
foo(s[1]);
|
|
Writeln(ord(s[1]));
|
|
if ord(s[1])<>32 then
|
|
halt(1);
|
|
end.
|