mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-07 15:28:49 +00:00
Global definitions; regression tests fixed
This commit is contained in:
parent
a3b12425fd
commit
f5b802ebed
56 changed files with 121 additions and 10 deletions
|
|
@ -1,3 +1,5 @@
|
|||
global x, m, n;
|
||||
|
||||
fun ack (m, n) {
|
||||
if m == 0 then return (n+1)
|
||||
elif m > 0 && n == 0 then return ack (m-1, 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue