Files
Construction-of-Compilers/Project-02/triplaprograms/side_effect.tripla
Jan-Niclas Loosen fe33668b5f Init next project
2025-11-11 14:40:50 +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)