mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
24 lines
313 B
ObjectPascal
24 lines
313 B
ObjectPascal
{$inline on}
|
|
|
|
procedure test(v:boolean);
|
|
|
|
procedure notice(s:string);inline;
|
|
begin
|
|
writeln(s);
|
|
end;
|
|
|
|
begin
|
|
if v then notice('this string vanishes.');
|
|
writeln('"test" main body executed.');
|
|
end;
|
|
|
|
|
|
|
|
begin
|
|
writeln('testing with True...');
|
|
test(true);
|
|
writeln;
|
|
writeln('testing with False...');
|
|
test(false);
|
|
end.
|