Elixir Blog Posts

This was interesting:

wish = fn -> fn -> fn -> IO.write "this is chain" end end end
wish.().().()   # usage

Are there any examples of this being useful/being used in e.g. elixir lang or other well-written projects?

1 Like