Initial commit

This commit is contained in:
Lucia Ceionia
2023-05-12 16:54:29 -05:00
commit 1f6da72364
14 changed files with 1783 additions and 0 deletions

12
ack.src Normal file
View File

@@ -0,0 +1,12 @@
fn ack(m i32 n i32)
endvar
if m then
if n then
m 1- : m n 1- call ack call ack ret;
else
m 1- 1 call ack ret;
end
else
n 1+ ret
end
endfn