For those wondering, the syntax is: F = fun Fact(0) -> 1; Fact(N) when N > 0 -> N * Fact(N - 1) end, F(6). Regards, -- Anthony Ramine Le 31 janv. 2014 à 22:51, Kenneth Lundin <kenneth.lundin@REDACTED> a écrit : > - Funs can now be given names