Skip to content

Instantly share code, notes, and snippets.

@apieum
Last active December 28, 2015 14:19
Show Gist options
  • Select an option

  • Save apieum/7513489 to your computer and use it in GitHub Desktop.

Select an option

Save apieum/7513489 to your computer and use it in GitHub Desktop.
koans 1
ExUnit.start
defmodule About_Functions do
use ExUnit.Case
use Koans
test "test function" do
hello
end
def hello do
IO.puts("hello")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment