Created
February 9, 2012 21:42
-
-
Save ttscoff/1783477 to your computer and use it in GitHub Desktop.
To be or not to be...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/shakespeare -hamlet | |
function suffer() { | |
outrageous_fortune = true; | |
return false; | |
} | |
function oppose() { | |
if (take_arms(sea_of_troubles)) sleep; | |
die; | |
} | |
question = (be) ? suffer() : oppose(); | |
ask(question); | |
function argue(type) { | |
if (type == "semantics" || type == "syntax") { | |
return "seriously?"; | |
} else { | |
return "I don't care"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment