pascalabcnet/TestSamples/CompilationSamples/if_test.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

10 lines
103 B
ObjectPascal

var i : integer;
f : boolean;
begin
i := 5;
if i < 10 then
f := true
else
f := false;
end.