mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
19 lines
164 B
Ruby
19 lines
164 B
Ruby
module Bar
|
|
def self.hi
|
|
"<hi>"
|
|
end
|
|
end
|
|
|
|
module Bar
|
|
def self.hi
|
|
"<hello>"
|
|
end
|
|
module Baz
|
|
def self.baz
|
|
"<baz>"
|
|
end
|
|
end
|
|
end
|
|
|
|
Bar.hi()
|