Created
March 10, 2015 22:46
-
-
Save NevadaKiran/c25f1eb6db4ca568a079 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
types_of_people = 10 | |
x = "There are #{types_of_people} types of people." | |
binary = "binary" | |
do_not = "don't" | |
y = "Those who know #{binary} and those who #{do_not}." | |
puts x | |
puts y | |
puts "I said #{x}." | |
puts "I also said '#{y}'." | |
hilarious = false | |
joke_evaluation = "Isn't that joke so funny?! #{hilarious}" | |
puts joke_evaluation | |
w = "This is the left side of..." | |
e = "a string with a right side." | |
puts w + e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment