Skip to content

Instantly share code, notes, and snippets.

@BrooklinJazz
Created June 8, 2021 15:50
Show Gist options
  • Save BrooklinJazz/5e6b2dba0ec9e10b215088672cb07823 to your computer and use it in GitHub Desktop.
Save BrooklinJazz/5e6b2dba0ec9e10b215088672cb07823 to your computer and use it in GitHub Desktop.
Elixir example of case variables
case {:ok, 5} do
{:ok, n} -> "this will match and n is 5: #{n}"
{:error, n} -> "this will not match"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment