Hacker News new | ask | show | jobs
by bslatkin 1207 days ago
I'm not an Elixir expert at all, but one important feature I believe is missing: explicit returns.
1 comments

um, what?

Pretty common in FP languages to have implicit returns. A function HAS to return something. Ideally, a function is just a mapping between one value and another value. Wouldn't make much sense to have explicit returns.

For everything else there are guards, or just a simple if/else block. If everything is an expression (And if you are making an FP lang, almost everything should be.), the last expression will always be returned.