Simple Hello World test for Lua. Nothing too fancy.
Taken from Wikipedia page of the same name.
local p = {} function p.hello() return 'Hello World' end return p