ruby/test/ruby/namespace/a.rb
2025-05-11 23:32:50 +09:00

15 lines
131 B
Ruby

class NS_A
FOO = "foo_a1"
def yay
"yay_a1"
end
end
module NS_B
BAR = "bar_b1"
def self.yay
"yay_b1"
end
end