summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/htdocs/modules/lua/hello.lua
blob: 85cd99e94c0938a81541902346fd7783451d446e (plain)
1
2
3
4
function handle(r)
    r.content_type = "text/plain"
    r:puts("Hello Lua World!\n")
end