X-Git-Url: http://nitlanguage.org diff --git a/tests/shootout_ackermann.nit b/tests/shootout_ackermann.nit index ade7f93..da3b06b 100644 --- a/tests/shootout_ackermann.nit +++ b/tests/shootout_ackermann.nit @@ -19,7 +19,7 @@ # # contributed by Jean Privat -meth ack(m: Int, n: Int): Int +fun ack(m: Int, n: Int): Int do if m == 0 then return n + 1