Created
June 24, 2011 18:32
-
-
Save wrunk/1045372 to your computer and use it in GitHub Desktop.
Simple python script for bustin
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
#!/usr/bin/env python | |
# The above line will cause this script to be run using the program 'python' | |
# Lines that start with a hash are comments for fun | |
# The interpreter wont read these. | |
def print_function(): | |
print ''' | |
******* * * | |
* * * | |
**** * * | |
* * * | |
* * * * ''' | |
# __name__ is a special variable. it will be equal to '__main__' | |
# When you run this script on the command line | |
if __name__ == '__main__': | |
# The below line invokes our above print function :) | |
# It will cause things to print | |
print_function() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment