Skip to content

Instantly share code, notes, and snippets.

@n-b
Last active September 30, 2024 15:19
Show Gist options
  • Save n-b/401518f50a553dc32edad5932872b4f0 to your computer and use it in GitHub Desktop.
Save n-b/401518f50a553dc32edad5932872b4f0 to your computer and use it in GitHub Desktop.
utf8.rb
#! 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