Please send questions to st10@humboldt.edu .
#! /usr/bin/python

# pig_it.py
#
# you can run this at the UNIX/Linux command-line by typing:
# cs-server> python pig_it.py
#
# if you make me executable, you can leave off the python:
# cs-server> chmod 700 pig_it.py
# cs-server> pig_it.py
#
# (heck, you could import it into a python interpreter session
#    to run it --- *once* during that session, anyway... 8-)
# >>> import pig_it
#
# by: Sharon Tuttle
# last modified: 10-17-06

# assumes that hw4.py is in the same directory as pig_it.py...!
#    (or in the sys.path...)

import hw4

stringToPig = raw_input("Please type string to pig-latinize: ")

piggyString = hw4.pig_string(stringToPig)

print ""
print "Your pig-latinized string is: "
print piggyString
print ""
print "Thank you, and please come again."
print ""