diff --git a/hello_world.rb b/hello_world.rb index 81d8bfe..f7292bc 100644 --- a/hello_world.rb +++ b/hello_world.rb @@ -1,7 +1,8 @@ class HelloWorld - def self.hello - # + def initialize # YOUR CODE GOES HERE # + puts "hello world" end -end +end +HelloWorld.new