Skip to content

Instantly share code, notes, and snippets.

@jaimeiniesta
Last active March 6, 2017 08:57
Show Gist options
  • Save jaimeiniesta/b1877943cbc126f9a240af2461076327 to your computer and use it in GitHub Desktop.
Save jaimeiniesta/b1877943cbc126f9a240af2461076327 to your computer and use it in GitHub Desktop.
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