Skip to content

Instantly share code, notes, and snippets.

View SavageBell00's full-sized avatar

D.SavageBell SavageBell00

View GitHub Profile
@matt297
matt297 / ruby_examples.rb
Last active November 14, 2021 04:29 — forked from MaggieMoss/ruby-examples.rb
Lighthouse Labs - Intro to Web Dev - W2D2
# 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