summary refs log tree commit diff stats
path: root/examples/cgi/example.nim
blob: 17629982ab34cb55ea67ba0c5ceba4f453d277d7 (plain) (blame)
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!")
writeln(stdout, "</body></html>")