Cheat Sheets

A collection of cheat sheets.

Hosted on GitHub Pages — Theme by mattgraham

Hello World

defmodule HelloWorld do
    def hello() do
        IO.puts("Hello World!)
    end
end

HelloWorld.hello()