Support compound statements

This commit is contained in:
2024-03-11 10:43:26 +01:00
parent 2c396ece17
commit 25657ac36d
12 changed files with 242 additions and 86 deletions

View File

@ -1,4 +1,5 @@
var x;
begin
x := 5;
! 5
end.

View File

@ -0,0 +1,2 @@
5
7

View File

@ -0,0 +1,4 @@
begin
! 5;
! 7
end.