Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View DRot88's full-sized avatar

Daniel Rotenberg DRot88

View GitHub Profile
@DRot88
DRot88 / hello_world.py
Created October 11, 2019 04:34
Testing
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@DRot88
DRot88 / hello_world.py
Created October 11, 2019 03:55
Testing
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()