Skip to content

Instantly share code, notes, and snippets.

@bradgessler
Created December 4, 2024 07:19
Show Gist options
  • Save bradgessler/c4724319d74042ba7055db97bc88c31e to your computer and use it in GitHub Desktop.
Save bradgessler/c4724319d74042ba7055db97bc88c31e to your computer and use it in GitHub Desktop.
Fun with tools
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