#!/usr/bin/python
# L-21 MCS 275 Mon 27 Feb 2017 : python_works.py
"""
Place this file in the directory where Apache expects its CGI scripts.
On Mac OS X, this directory is /Library/WebServer/CGI-Executables.
Permissions for this file must be set to executable (do chmod +x).
Point your browser then to http://localhost/cgi-bin/python_works.py
to execute the script.
"""

print("Content-Type: text/plain\n\n")
print("Python works")
