Skip to content

Instantly share code, notes, and snippets.

@lbvf50mobile
Created September 21, 2017 17:47
Show Gist options
  • Select an option

  • Save lbvf50mobile/1b7be980f225e99cf0ab75465aed6d10 to your computer and use it in GitHub Desktop.

Select an option

Save lbvf50mobile/1b7be980f225e99cf0ab75465aed6d10 to your computer and use it in GitHub Desktop.
"a" is a class method.
class Example
def initialize
puts 'Hi'
end
def self.a
puts 'This is method with name in one letter'
end
end
class Example
a
end
Example.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment