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).


Sandbox modules, This is a test


local export = {}

function export.show(frame)
	return table.concat(mw.title.getCurrentTitle().categories, ", ")
end

return export