Massive renaming

This commit is contained in:
Dmitry Boulytchev 2020-02-16 00:21:15 +03:00
parent 241ab0a9ae
commit 61296c51e7
152 changed files with 45 additions and 29 deletions

View file

@ -1,16 +0,0 @@
local x, m, n;
fun ack (m, n) {
if m == 0 then (n+1)
elif m > 0 && n == 0 then ack (m-1, 1)
else ack (m-1, ack (m, n-1))
fi
}
x := read ();
for m := 0, m <= 3, m := m+1 do
for n := 0, n <= 8, n := n+1 do
write (ack (m, n))
od
od