fpc/tests/webtbs/tw0935.pp
2002-09-07 15:40:30 +00:00

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.