Skip to content

Instantly share code, notes, and snippets.

@apieum
Last active December 28, 2015 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apieum/7513489 to your computer and use it in GitHub Desktop.
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