Created
November 15, 2016 16:54
-
-
Save FilBot3/9e57f65e1900e14be39f3df548ab2978 to your computer and use it in GitHub Desktop.
An Example of Ruby's Module and a method not in a class.
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
| module TestStuff | |
| def self.fart_a_bunch | |
| puts "Fart Fart Fart Fart" | |
| end | |
| end | |
| TestStuff.fart_a_bunch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment