(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 17:28, 27 August 2009

Test 1 Prep

Here are my notes.

import os, sys
def main():
    print "hello world"
 
if __name__ == "__main__":
    main()

Alumni Liaison

Basic linear algebra uncovers and clarifies very important geometry and algebra.

Dr. Paul Garrett