Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 401 Bytes

livebook.livemd

File metadata and controls

22 lines (14 loc) · 401 Bytes

Sample Livebook

Section

Markdown

Notebooks are .livemd files, a subset of Markdown with support for equations and annotations.

{plus, _} = IO.gets("plus") |> Integer.parse()

[1, 2, 3]
|> Enum.map(&(&1 + plus))
[2, 3, 4]