mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 05:59:28 +02:00
13 lines
201 B
ObjectPascal
13 lines
201 B
ObjectPascal
program ifdemo;
|
|
|
|
var
|
|
a : integer = 0;
|
|
|
|
begin
|
|
if a=1 then
|
|
Writeln('This should not be');
|
|
if a=2 then
|
|
Writeln('This should also not be')
|
|
else
|
|
Writeln('This should be OK');
|
|
end. |