Last active
September 30, 2024 15:19
-
-
Save n-b/401518f50a553dc32edad5932872b4f0 to your computer and use it in GitHub Desktop.
utf8.rb
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
#! ruby | |
module Foo_é | |
def self.bla | |
puts "bla" | |
end | |
end | |
module Foo_é | |
def self.baz | |
puts "baz" | |
end | |
end | |
Foo_é.bla | |
Foo_é.baz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment