Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created November 21, 2020 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melezhik/ad2d084ed027d4e6c742c23d8de1b216 to your computer and use it in GitHub Desktop.
Save melezhik/ad2d084ed027d4e6c742c23d8de1b216 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