Module:sandbox

From Wiktionary, the free dictionary
Jump to navigation Jump to search

Module sandbox for tests. The main function is show.

If you want to keep your test module as private, please create page in format: Module:User:(username)/(module_name).


sample text goes here


local export = {}

mw.log("Hello")

function export.show(frame)
	return "sample text goes here"
end

return export