모듈:Iloop

리버티게임(개발), 모두가 만들어가는 자유로운 게임
둘러보기로 이동 검색으로 이동


모듈 설명문서[보기] [편집] [역사] [새로 고침]
이 부분의 본문은 틀:loop입니다.


return {
	loop = function(frame)
		local text = ''
		local finish = tonumber(frame.args[2])
		local times = tonumber(frame.args[3]) or 1
		local from = tonumber(frame.args[4]) or 1
		local var = frame.args.index or 'index'
		local func = require('모듈:TemplateFunction').create(frame.args[1])
		
		for index = from, finish, times do
			text = text .. func:parse{[var] = index}
		end
		
		return text
	end
}