13 lines
58 B
Plaintext
13 lines
58 B
Plaintext
|
|
||
|
fn a(x)
|
||
|
x + 20
|
||
|
end
|
||
|
|
||
|
fn x(x)
|
||
|
x + a(9000)
|
||
|
end
|
||
|
|
||
|
a(0)
|
||
|
x(1)
|
||
|
|