From 2e5d809b5c024fbaaadb02864315a26828dd8ad7 Mon Sep 17 00:00:00 2001 From: aboualnaser Date: Thu, 26 May 2016 10:37:50 +0200 Subject: [PATCH] hello --- hello_world.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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