summary refs log blame commit diff stats
path: root/examples/cgi/example.nim
blob: 761197cdbcb03f8f626e702ed32c55366aee3021 (plain) (tree)
1
2
3
4
5
6
7





                                                                       
                                   
import cgi

write(stdout, "Content-type: text/html\n\n")
write(stdout, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\">\n")
write(stdout, "<html><head><title>Test</title></head><body>\n")
write(stdout, "Hello!")
writeLine(stdout, "</body></html>")