diff --git a/bash.sh b/bash.sh new file mode 100644 index 00000000..3e7c682f --- /dev/null +++ b/bash.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "Hello World!"; \ No newline at end of file diff --git a/ruby.rb b/ruby.rb index 2beb1f22..c56baa23 100644 --- a/ruby.rb +++ b/ruby.rb @@ -1,2 +1,16 @@ #!/usr/bin/ruby -puts "Hello World" + +class Hello + + def initialize + @message = "Hello World!" + end + + def say_hi + puts @message + end + +end + +h = Hello.new +h.say_hi