Last active
March 6, 2017 08:57
-
-
Save jaimeiniesta/b1877943cbc126f9a240af2461076327 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 Logics do | |
def xor(x, x) do | |
false | |
end | |
def xor(_x, _y) do | |
true | |
end | |
end | |
IO.puts Logics.xor(true, true) # false | |
IO.puts Logics.xor(true, false) # true | |
IO.puts Logics.xor(false, true) # true | |
IO.puts Logics.xor(false, false) # false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment