Last active
December 31, 2021 13:29
-
-
Save 0jonjo/2f761062d81464fd65fe52566e8d19a3 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
class Year | |
def happy_new(year) | |
puts "happy new year!".upcase | |
puts year | |
end | |
end | |
tomorrow = Year.new | |
tomorrow.happy_new(2022) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment