Skip to content

Instantly share code, notes, and snippets.

@gboyegadada
gboyegadada / multiline.exs
Created March 25, 2024 15:27 — forked from squarism/multiline.exs
Multiline Anonymous Functions in Elixir
# Examples of Different Styles and Syntax
# legal / positive case / you can do these stuffs
# ---------------------------------------------------------------------------
# single line, nothing special
Enum.map(0...2, fn i -> IO.puts i end)
"""
0
1