mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-13 10:24:50 -07:00
11 lines
168 B
Python
Executable file
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>")
|