Skip to content

Instantly share code, notes, and snippets.

@marceloreichert
Created November 13, 2018 21:09
Show Gist options
  • Save marceloreichert/ab1e07d0b0c0b33eb4ee696ec20e05da to your computer and use it in GitHub Desktop.
Save marceloreichert/ab1e07d0b0c0b33eb4ee696ec20e05da 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