Add compiler improvement

This commit is contained in:
Jan-Niclas Loosen
2026-03-12 11:32:41 +01:00
parent 438447e6de
commit 9462ccd3ed
10 changed files with 108 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
let f(x, y)
{
let g(x)
{
y = x + 7
}
in x = g(5); y
}
in f(1, 2)