Changes for constant folding

This commit is contained in:
Sandy Brownlee
2022-09-30 00:10:27 +01:00
parent 7a8fb2564c
commit 55fdd944fa
18 changed files with 639 additions and 16 deletions
+12
View File
@@ -0,0 +1,12 @@
let
var a: Integer
in
begin
a := 10 + 20 * 2 / 3;
putint(a);
puteol();
a := 5 + 8;
putint(a)
end