mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
11 lines
No EOL
126 B
Text
11 lines
No EOL
126 B
Text
fun f (x) {
|
|
fun inner (y) {
|
|
if y == 0 then 0 else inner (y-1) fi
|
|
}
|
|
|
|
inner (x)
|
|
}
|
|
|
|
local n = read ();
|
|
|
|
write (f (5)) |