Created
January 6, 2016 17:35
-
-
Save emschwar/d18f77a37009f6b55f5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Foo do | |
def hi do | |
hi_priv(1, 1, 1) | |
end | |
defp hi_priv(a, b, c) when a == b, b == c do | |
IO.puts "hi" | |
end | |
end | |
Foo.hi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Change the
,
in the guard toand