Created
December 27, 2013 10:34
-
-
Save dgholz/8145200 to your computer and use it in GitHub Desktop.
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
blake = "some guy" | |
Bleak = "a cool dude" | |
def hi_blake | |
puts "hi blake you are #{blake}" | |
end | |
def hi_bleak | |
puts "hi bleak you are #{Bleak}" | |
end | |
hi_bleak | |
hi_blake |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment