Files
2026-03-12 11:32:41 +01:00

9 lines
88 B
Plaintext

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