palate 0.3.9

File type detection combining tft and hyperpolyglot
Documentation
1
2
3
4
5
6
method ack (m : Number, n : Number) -> Number {
  print "ack {m} {n}"
  if (m < = 0) then {n + 1}
   elseif {n <= 0} then {ack((m -1), 1)}
   else {ack(m -1, ack(m, n-1))}
}