Skip to content

Instantly share code, notes, and snippets.

@bussiere
Created January 26, 2011 14:43
Show Gist options
  • Save bussiere/796774 to your computer and use it in GitHub Desktop.
Save bussiere/796774 to your computer and use it in GitHub Desktop.
un peu de philosophie en python
#!/usr/bin/python
class Philosophie:
def __init__(self):
world = True
def nihilisme(self):
self = None
return self
def solipsisme(self):
self.world = self
if __name__ == '__main__':
pensees = Philosophie()
pensees.solipsisme
pensees.nihilisme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment