Improved type system

This commit is contained in:
Eduard Urbach 2025-02-17 14:31:47 +01:00
parent 78f2670553
commit 6eab48c586
Signed by: eduard
GPG key ID: 49226B848C78F6C8
62 changed files with 189 additions and 172 deletions

View file

@ -2,11 +2,11 @@ main() {
f1(1, 2, 3, 4, 5, 6)
}
f1(a Int, b Int, c Int, d Int, e Int, f Int) {
f1(a int, b int, c int, d int, e int, f int) {
f2(f, e, d, c, b, a)
}
f2(a Int, b Int, c Int, d Int, e Int, f Int) {
f2(a int, b int, c int, d int, e int, f int) {
assert a == 6
assert b == 5
assert c == 4