Python CGI - Hello world

Z GeoWikiCZ
Verze z 23. 4. 2007, 19:55, kterou vytvořil Cepek (diskuse | příspěvky) (kategorie)
#!/usr/bin/python

import cgi

def main():
    print "Content-type: text/html"
    print

    print "Hello world!"


main()