Skip to content

Instantly share code, notes, and snippets.

@B3nnyL
Created October 18, 2018 06:09
Show Gist options
  • Save B3nnyL/970bf166c1915a34437bb121c100eb6a to your computer and use it in GitHub Desktop.
Save B3nnyL/970bf166c1915a34437bb121c100eb6a 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