Created
November 2, 2011 03:15
-
-
Save kuruma-gs/1332752 to your computer and use it in GitHub Desktop.
title
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
@techs.empty? | |
# Output "I love Ruby" | |
say = "I love Ruby" | |
puts say | |
# Output "I *LOVE* RUBY" | |
say['love'] = "*love*" | |
puts say.upcase | |
# Output "I *love* Ruby" | |
# five times | |
5.times { puts say } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment