Created
December 4, 2024 07:19
-
-
Save bradgessler/c4724319d74042ba7055db97bc88c31e to your computer and use it in GitHub Desktop.
Fun with tools
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 Fizz | |
def self.tool(method_name) | |
puts "defining methods in ruby return a symbol, like #{method_name.inspect}" | |
end | |
end | |
class Buzz < Fizz | |
tool def hello | |
puts "Hi!" | |
end | |
end | |
Buzz.new.hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment