Big testing update

This commit is contained in:
Scarlett
2025-04-25 23:26:50 -04:00
parent 747a48b211
commit 6e4841f0c1
27 changed files with 262 additions and 8 deletions

View File

@ -0,0 +1,10 @@
type main: integer -> integer
function test: main
test (a) := {
[Boolean: b; integer: x; integer: y]
x := 1;
y := 2;
b := x < y;
return 1;
}