mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
22 lines
233 B
ObjectPascal
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.
|