Skip to content

Instantly share code, notes, and snippets.

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

teste

@marceloreichert
Copy link
Author

teste 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment