Skip to content

Instantly share code, notes, and snippets.

@jaredcwhite
Last active May 17, 2021 22:00
Show Gist options
  • Save jaredcwhite/62fa82550802de00c5e873b5536d3595 to your computer and use it in GitHub Desktop.
Save jaredcwhite/62fa82550802de00c5e873b5536d3595 to your computer and use it in GitHub Desktop.
Hello I am Ruby
class Ruby
end
def am(input)
"am #{input}"
end
def I(input)
"I #{input}"
end
def Hello(input)
puts "Awesome!"
puts "#{input} too."
end
Hello I am Ruby
# output:
#
# Awesome!
# I am Ruby too.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment