Sha256: cae4519cb9edf0978fa3b3993c8b021baecf13f9a4dd161c9c69a751d9e03e99
Contents?: true
Size: 692 Bytes
Versions: 17
Compression:
Stored size: 692 Bytes
Contents
defmodule HelloModule do @moduledoc """ This is supposed to be `markdown`. __Yes__ this is [mark](http://down.format) # Truly ## marked * with lists * more * and more Even.with(code) blocks |> with |> samples _Docs are first class citizens in Elixir_ (Jose Valim) """ # A "Hello world" function def some_fun do IO.puts "Juhu Kinners!" end # A private function defp priv do is_regex ~r""" This is a regex spanning several lines. """ x = elem({ :a, :b, :c }, 0) #=> :a end end test_fun = fn(x) -> cond do x > 10 -> :greater_than_ten true -> :maybe_ten end end
Version data entries
17 entries across 17 versions & 1 rubygems