Jump to content

Module:Korean

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Grapesurgeon (talk | contribs) at 07:56, 11 April 2025 (t). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

require('strict');
local p = {}

function p.ko(frame)
	local getArgs = require('Module:Arguments').getArgs
	local args = getArgs(frame)
	return p._ko(args)
end

function p._ko(args)
	return "(asdf", args[1], "; jkl", args[2], ")"
	
end
return p