Last active
May 17, 2021 22:00
-
-
Save jaredcwhite/62fa82550802de00c5e873b5536d3595 to your computer and use it in GitHub Desktop.
Hello I am Ruby
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
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