Skip to content

Instantly share code, notes, and snippets.

@ax-hd
Created October 21, 2019 00:52
Show Gist options
  • Save ax-hd/9d7ca2d416cd4bc17c39129cc7ab6b30 to your computer and use it in GitHub Desktop.
Save ax-hd/9d7ca2d416cd4bc17c39129cc7ab6b30 to your computer and use it in GitHub Desktop.
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
hello.sayHi
Run `python hello_world.py` to print Hello World
Run `ruby hello_world.rb` to print Hello World
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment