ruby/test/ruby/box/string_ext.rb
2025-11-07 13:14:54 +09:00

14 lines
156 B
Ruby

class String
def yay
"yay"
end
end
String.new.yay # check this doesn't raise NoMethodError
module Bar
def self.yay
String.new.yay
end
end