9 lines
88 B
Plaintext
9 lines
88 B
Plaintext
let f(x, y)
|
|
{
|
|
let g(x)
|
|
{
|
|
y = x + 7
|
|
}
|
|
in x = g(5); y
|
|
}
|
|
in f(1, 2) |