Skip to content

Instantly share code, notes, and snippets.

@DWSimmons
Created May 27, 2015 22:14
Show Gist options
  • Save DWSimmons/d7d69d5ce0757c180d7a to your computer and use it in GitHub Desktop.
Save DWSimmons/d7d69d5ce0757c180d7a to your computer and use it in GitHub Desktop.
I am n00b, here me fail!
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