cosmopolitan/tool/net/demo/crashreport.lua

29 lines
422 B
Lua
Raw Normal View History

2022-04-16 19:25:53 +00:00
globalvar1 = 31337
globalvar2 = {
hello = 'world',
2022-04-16 19:25:53 +00:00
}
function dosomething(param1, x)
local res
local y
y = 0
2022-04-16 19:25:53 +00:00
SetStatus(200)
SetHeader('Content-Type', 'text/plain; charset=utf-8')
Write('preprae to crash... now\r\n')
res = x / y
Write('42 / 0 is %d\r\n' % {res})
2022-04-16 19:25:53 +00:00
end
function start(param1)
local x = 42
dosomething(s, x)
end
function main()
local s = 'hello'
start(s)
end
main()