Created
September 25, 2019 15:15
-
-
Save danielpaul/f8b791cc4672f3cfea9af83c6db5ab9b 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
puts 'Hello World!' | |
greeting = 'Good morning!' | |
puts greeting | |
forecast = "rainy" # string | |
temperature = 32 # number | |
is_summer = true # boolean | |
# overwrite the existing value with a new one | |
forecast = "sunny" | |
print "It's going to be #{forecast}, #{temperature} degrees outside today. " | |
# output to the same line. | |
print 'It\'s going to be a great day!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment