moth/cgi/puzzler.cgi

15 lines
170 B
Plaintext
Raw Normal View History

2015-04-16 22:29:05 -06:00
#! /usr/bin/lua
local cgi = require "cgi"
2015-04-18 14:24:00 -06:00
-- Read in team and answer
2015-04-17 17:13:34 -06:00
print("Content-type: text/html")
print()
print("<pre>")
2015-04-18 14:24:00 -06:00
print(cgi.fields["t"])
2015-04-17 17:13:34 -06:00
print("</pre>")