Files
Construction-of-Compilers/Project-02-03-04-05/triplaprograms/side_effect.tripla
Jan-Niclas Loosen 8a40cb2636 New project structure
2026-03-03 16:45:00 +01:00

6 lines
74 B
Plaintext

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