Skip to content

Instantly share code, notes, and snippets.

@David-Tsui
Created August 3, 2015 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save David-Tsui/61ba4fc1bbc2a1608359 to your computer and use it in GitHub Desktop.
Save David-Tsui/61ba4fc1bbc2a1608359 to your computer and use it in GitHub Desktop.
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello #{@name}!"
end
end
hello = HelloWorld.new("World")
hello.sayHi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment