My first TeamCity joke
While I am waiting for advice on my design choice questions posted earlier today, here is my first TeamCity joke, implemented as a refresher on python multiple inheritance:
#!//bin/python
class Bass(object):
def __init__(self):
super(Bass, self).__init__()
print " and"
print " "
class Drums(object):
def __init__(self):
super(Drums, self).__init__()
print " Rock"
print " "
class Guitar(object):
def __init__(self):
super(Guitar, self).__init__()
print " "
print " We built Team City on"
print " "
class Song(Bass, Drums, Guitar):
def __init__(self):
super(Song, self).__init__()
print " Roll"
print " "
if __name__ == '__main__':
Song()
Comments? Questions? Boos and hisses?
Feel free to use this code as an icebreaker for any presentations you need to make on your TeamCity implementations......
Please sign in to leave a comment.