Skip to content

Instantly share code, notes, and snippets.

@DWSimmons
Created May 27, 2015 22:14
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