hw3: init

This commit is contained in:
2026-03-13 15:01:31 -07:00
parent 7541f30384
commit 1bc674f6b6
9 changed files with 273 additions and 0 deletions

6
hw3/test.imp Normal file
View File

@@ -0,0 +1,6 @@
X := ( ( 1 + 2 ) - 3 ) + ( 1 + 3 );
Y := 0;
while X>0 do
Y := Y+X;
X := X-1
endwhile