Merge branch 'master' of git://github.com/mikedamage/hello-world

This commit is contained in:
Clive Crous
2008-07-24 00:46:21 +02:00
2 changed files with 18 additions and 1 deletions

3
bash.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
echo "Hello World!";

16
ruby.rb
View File

@@ -1,2 +1,16 @@
#!/usr/bin/ruby #!/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