Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Test: Difference between revisions

From MassiveCraft Wiki
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local io = {}


name = "dfsdg"
name = "dfsdg"


function p.hello()
function io.hello()
name = io.read()
name = io.read()
return name
return name
end
end


function p.delight()
return io
return "You're a delight!"
end
 
return p

Revision as of 07:04, 25 August 2015

Documentation for this module may be created at Module:Test/doc

local io = {}

name = "dfsdg"

function io.hello()
	name = io.read()
	return name
end

return io