Created
November 13, 2018 21:15
-
-
Save marceloreichert/3a7df1eea017c7d83b3c0059ad4b6394 to your computer and use it in GitHub Desktop.
Hello World Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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