comparison src/tools/params.txt.luan @ 14:80105b716a62

start bot
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 31 Oct 2023 23:56:48 -0600
parents
children
comparison
equal deleted inserted replaced
13:af2b95854072 14:80105b716a62
1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error
3 local stringify = Luan.stringify or error()
4 local Io = require "luan:Io.luan"
5 local Http = require "luan:http/Http.luan"
6
7
8 return function()
9 Io.stdout = Http.response.text_writer()
10 %><%= stringify(Http.request.parameters) %><%
11 end