1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-13 10:24:50 -07:00
moth/cgi/puzzler.cgi
2015-04-17 17:13:34 -06:00

11 lines
168 B
Python
Executable file

#! /usr/bin/lua
local cgi = require "cgi"
cgi.init()
fields = cgi.fields()
print("Content-type: text/html")
print()
print("<pre>")
print(fields["t"])
print("</pre>")