Skip to content

Instantly share code, notes, and snippets.

@cored

cored/tuple.ex Secret

Created April 7, 2023 18:01
Show Gist options
  • Save cored/2ae6cecf044916c6f123dd69be93c256 to your computer and use it in GitHub Desktop.
Save cored/2ae6cecf044916c6f123dd69be93c256 to your computer and use it in GitHub Desktop.
{:ok, 1, "a"}
# pattern match
{:ok, result} = {:ok, "good"}
# this raises a match error
{:ok, result} = {:ok, "good", "one more"}
# empty tuple
{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment