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