Created
May 27, 2015 22:14
-
-
Save DWSimmons/d7d69d5ce0757c180d7a to your computer and use it in GitHub Desktop.
I am n00b, here me fail!
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 HelloWorld | |
def initialize(name = "World") | |
@name = name | |
end | |
def hello | |
puts "Hello #{@name}!" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment