Skip to content

Instantly share code, notes, and snippets.

@JessMol
JessMol / hello_world.rb
Created May 23, 2026 18:56 — forked from octocat/hello_world.rb
Hello world!
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello #{@name}!"
end
end
hello = HelloWorld.new("World")