Module:User:Joshbaumgartner/sandbox

Code

local p = {} -- p stands for package
local hello = "Hello, world!"

function p.hello( frame )
    return hello
end

function p.vtype(frame)
	local hellotype = type(hello)
	return hellotype
end

return p