-
-
Save eliavlavi/c7e933962da319584410f14ddffeb149 to your computer and use it in GitHub Desktop.
Example class for class vs. instance methods
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
class Example | |
def self.a_class_method; end | |
def an_instance_method; end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment