Skip to content

Instantly share code, notes, and snippets.

@hidsh
Created December 6, 2011 06:45
Show Gist options
  • Save hidsh/1437092 to your computer and use it in GitHub Desktop.
Save hidsh/1437092 to your computer and use it in GitHub Desktop.
import sys
Morpheous = "You take the blue pill and the story ends, you wake up in your bed and believe whatever you want to believe. You take the red pill, you stay in Wonderland, and I show you how deep the rabbit hole goes."
def which_do_you_choose(your_mind):
return 'red pill' if your_mind == 'believe' else 'blue pill'
def enter_the_matrix():
while True:
for c in Morpheous:
print ord(c),
print Morpheous
if which_do_you_choose(raw_input('Neo:')) == 'blue pill':
print " you've waken up in pseudo world."
sys.exit()
else:
enter_the_matrix()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment