pascalabcnet/TestSuite/formatter_tests/input/if9.pas
Бондарев Иван 95732697f2 fix in formatter
2020-07-26 12:17:46 +02:00

9 lines
150 B
ObjectPascal

begin
tbx.MouseWheel += (o, e) ->
begin
if e.Delta > 0 then
Value := Value + 1
else if e.Delta < 0 then
Value := Value - 1
end;
end.