Skip to content

Instantly share code, notes, and snippets.

@ryugoo
Created July 4, 2012 05:19
Show Gist options
  • Save ryugoo/3045527 to your computer and use it in GitHub Desktop.
Save ryugoo/3045527 to your computer and use it in GitHub Desktop.
Python (´∀`)
# -*- coding: utf-8 -*-
def main(bool = 0):
if bool is True:
print u"Calling True"
elif bool is False:
print u"Calling False"
else:
print u"Not working"
if __name__ == '__main__':
main(True)
main(False)
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment