Skip to content

Instantly share code, notes, and snippets.

@adolfont
Created March 27, 2019 12:48
Show Gist options
  • Save adolfont/5abe83aa670902bd038b40694f40c455 to your computer and use it in GitHub Desktop.
Save adolfont/5abe83aa670902bd038b40694f40c455 to your computer and use it in GitHub Desktop.
defmodule LogicaClassicaProposicional do
def nao(:v), do: :f
def nao(:f), do: :v
end
alias LogicaClassicaProposicional, as: LCP
IO.inspect LCP.nao(:f)
IO.inspect LCP.nao(:v)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment