Skip to content

Instantly share code, notes, and snippets.

@jMyles
Created April 22, 2015 21:50
Show Gist options
  • Save jMyles/804ad85a85cb26e5d762 to your computer and use it in GitHub Desktop.
Save jMyles/804ad85a85cb26e5d762 to your computer and use it in GitHub Desktop.
maybe in python
def tell_me_the_answer(question):
if question.determine_truth:
return True
if not question.determine_truth:
return False
## Conceptually, why not?
if question.dont_know_yet:
return Maybe # Twisted calls this NOT_DONE_YET
@kennethreitz
Copy link

return bool(question) if question.is_known else Maybe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment