Skip to content

Instantly share code, notes, and snippets.

@EricsonWillians
Created June 18, 2015 08:59
Show Gist options
  • Save EricsonWillians/033e59737fb1d23ee205 to your computer and use it in GitHub Desktop.
Save EricsonWillians/033e59737fb1d23ee205 to your computer and use it in GitHub Desktop.
Poem
"""
Poem rules:
Only classes and functions, no global variables (And no strings, only chars on the arguments).
Also, only one output is allowed (It can be a single statement, or an endless expression.)
And more importantly: Everything must happen inside a tuple.
"""
class Everything():
def __init__(self):
pass
def means(self, arg):
pass
class Thy():
presence = Everything()
love = Everything()
class Thou(): pass
class canst():
def __init__(self, arg):
pass
def believe(self, arg):
print("Yes, my true love.")
class Love(): pass
class Me():
def __init__(self, arg):
pass
class to():
def __init__(self):
pass
class my():
def __init__(self, arg):
pass
class my_true():
def __init__(self, arg):
pass
def to_me(arg): pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment