Skip to content

Instantly share code, notes, and snippets.

@marceloreichert
Created November 13, 2018 21:14
Show Gist options
  • Save marceloreichert/4ea0d9646a31b18c92d89b24e3f22fee to your computer and use it in GitHub Desktop.
Save marceloreichert/4ea0d9646a31b18c92d89b24e3f22fee to your computer and use it in GitHub Desktop.
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
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