Modul:Work

Aus FürthWiki

Die Dokumentation für dieses Modul kann unter Modul:Work/Doku erstellt werden

local p = {} --p stands for package

function p.stringToChars(frame)
	local str = ""
	for c in frame.args[1]:gmatch"." do
		str = str .. " " .. c
	end
end

return p