pascalabcnet/TestSuite/formatter_tests/input/ifexpr2.pas
Бондарев Иван 97ee572be7 formatting of if expressions
2020-01-12 11:42:57 +01:00

3 lines
71 B
ObjectPascal

begin
var b := if a<2 then 2+3 else if a>3 then 2+5 else 3+4;
end.