dwango / fialyzer

[WIP] Faster Implementation of Dialyzer
https://dwango.github.io/fialyzer/
Apache License 2.0
56 stars 8 forks source link

Support: anonymous recursive function #216

Closed yoshihiro503 closed 5 years ago

yoshihiro503 commented 5 years ago
fun Fact(N) ->
  case N of
    0 -> 1;
    _ -> N * Fact(N - 1)
  end
end