This is a test of creating a Scibunto Module.

The modules is called 'Second' and simply returns a string 'Hello from Lua ' with the argument passed to the function.


local n = {
    helloworld = function(frame)
        name = frame.args.name  or 'unknown'
        return 'Hello from Lua ' .. name
    end
}

return n