Skip to content

Instantly share code, notes, and snippets.

@rosswarren
Created December 8, 2011 22:55
Show Gist options
  • Save rosswarren/1449087 to your computer and use it in GitHub Desktop.
Save rosswarren/1449087 to your computer and use it in GitHub Desktop.
Object orientated Ruby Hello World
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello #{@name}!"
end
end
hello = HelloWorld.new("Github and Octopress!")
hello.sayHi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment