(New page: == Test 1 Prep == Here are my notes.) |
|||
Line 1: | Line 1: | ||
− | |||
== Test 1 Prep == | == Test 1 Prep == | ||
Here are my notes. | Here are my notes. | ||
+ | |||
+ | <source lang="python"> | ||
+ | |||
+ | import os, sys | ||
+ | def main(): | ||
+ | print "hello world" | ||
+ | |||
+ | if __name__ == "__main__": | ||
+ | main() | ||
+ | |||
+ | </source> |
Revision as of 16:28, 27 August 2009
Test 1 Prep
Here are my notes.
import os, sys def main(): print "hello world" if __name__ == "__main__": main()