adding a python version of one script for comparison

This commit is contained in:
Dan Buch 2011-01-03 23:08:34 -05:00
parent aa0f8bb8cb
commit fdcafd13f5

9
cli/variables.py Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python
firstname = "Jonathan"
print "Hello, " + firstname
firstname = "John"
print "Goodbye, " + firstname