hello-learning/hello-world.rb
2019-08-06 22:47:50 -05:00

13 lines
256 B
Ruby

# https://stackoverflow.com/questions/705729/how-do-i-create-a-ruby-hello-world#705754
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello #{@name}!"
end
end
hello = HelloWorld.new("World")
hello.sayHi