1
0
Fork 0
forked from fun/fun

More nested function fun! (0.40.1)

This commit is contained in:
Johannes Findeisen 2026-04-02 03:22:35 +02:00
commit cf320199ef
6 changed files with 369 additions and 15 deletions

View file

@ -15,8 +15,6 @@
fun outer(x)
fun inner(y)
return y * 2
end
return inner(x) + inner(3)
end
print(outer(5))