Files
Construction-of-Compilers/Project-02-03/triplaprograms/side_effect.tripla
2025-12-07 23:12:35 +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)