Lua

CodeDiscussionEditHistoryLinksLink count Subpages:DocumentationTestsResultsSandboxLive code All modules

This module is meant for testing your ideas. Any function could disappear or be changed at any moment so do not use any of them for things other than testing.

See also: Module:Test

Code

local p = {} --p stands for package

function p.table( frame )
	table1 = {1, 2}
	table2 = {3, table1}
	table2[2][3] = 4
	return table1[3]
end

return p