Skip to content

Instantly share code, notes, and snippets.

@Tombarr
Created January 19, 2019 23:09
Show Gist options
  • Save Tombarr/f4629cfbef9095dbe0318b0f1bb69f7e to your computer and use it in GitHub Desktop.
Save Tombarr/f4629cfbef9095dbe0318b0f1bb69f7e to your computer and use it in GitHub Desktop.
Cond statement in Elixir
cond do
x > y -> "x is larger"
x < y -> "x is smaller"
x == y -> "x and y are equal"
true -> "this is always true"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment