Last active
May 6, 2020 14:55
-
-
Save joeljuca/6ba8fe10c0775d91dcfba0e9344166bf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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