Skip to content

Instantly share code, notes, and snippets.

@joeljuca
Last active May 6, 2020 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeljuca/6ba8fe10c0775d91dcfba0e9344166bf to your computer and use it in GitHub Desktop.
Save joeljuca/6ba8fe10c0775d91dcfba0e9344166bf to your computer and use it in GitHub Desktop.
person = :joel
given_person = :john
case given_person do
^person -> "Hi, Joel!"
person -> "Hi, #{person}!"
end
# => "Hi, john!"
person # => :joel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment