2022-04-16 19:25:53 +00:00
|
|
|
globalvar1 = 31337
|
|
|
|
|
|
|
|
globalvar2 = {
|
2022-04-16 19:45:10 +00:00
|
|
|
hello = 'world',
|
2022-04-16 19:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function dosomething(param1, x)
|
2022-04-16 19:45:10 +00:00
|
|
|
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
|
2022-04-24 16:59:22 +00:00
|
|
|
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
|
2022-04-16 19:45:10 +00:00
|
|
|
|
|
|
|
main()
|