fpc/tests/webtbs/tw1096.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

22 lines
233 B
ObjectPascal

Program Test;
{$X-}
Function TestFunc : Boolean;
var b : Boolean;
begin
TestFunc := True;
b := True;
if b then
begin
exit;
end;
end;
begin
writeln(3 xor 1);
if TestFunc then
begin
writeln('Yo');
end;
end.