Skip to content

Instantly share code, notes, and snippets.

@nolim1t
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolim1t/ac60143ae442e1f55f7a to your computer and use it in GitHub Desktop.
Save nolim1t/ac60143ae442e1f55f7a to your computer and use it in GitHub Desktop.
Ruby method names are cool
class Test
def 你好
puts "Hello"
end
def привет
puts "Hello"
end
def 😊
puts "hey"
end
end
t = Test.new
t.你好
t.😊
t.привет
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment