Created
June 8, 2021 15:50
-
-
Save BrooklinJazz/5e6b2dba0ec9e10b215088672cb07823 to your computer and use it in GitHub Desktop.
Elixir example of case variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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