From fdcafd13f5d06bd67fb52f0cc30938a5bebd9f39 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Mon, 3 Jan 2011 23:08:34 -0500 Subject: [PATCH] adding a python version of one script for comparison --- cli/variables.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 cli/variables.py diff --git a/cli/variables.py b/cli/variables.py new file mode 100644 index 0000000..38132de --- /dev/null +++ b/cli/variables.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python + +firstname = "Jonathan" + +print "Hello, " + firstname + +firstname = "John" + +print "Goodbye, " + firstname