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
# STRINGS | |
# # we can use double quotes | |
puts "This is a string." | |
# # or we can use single quotes | |
puts 'This is a string with single quotes.' | |
# # adding two strings together | |
puts 'Hello, ' + "Maggie." | |
#INTEGER | |
#we can add them |