-
-
Save lbvf50mobile/1b7be980f225e99cf0ab75465aed6d10 to your computer and use it in GitHub Desktop.
"a" is a class method.
This file contains hidden or 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
| 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