모듈:Loop: 두 판 사이의 차이

리버티게임, 모두가 만들어가는 자유로운 게임
백괴게임>용사용자
(새 문서: local p={} function p.FOR(frame) local imin=frame.args[1] local imax=frame.args[2] local sentence=frame.args[3] for i=imin,imax do return sentence end end return p)
 
백괴게임>용사용자
편집 요약 없음
 
7번째 줄: 7번째 줄:
for i=imin,imax do
for i=imin,imax do
return sentence
print(sentence)
end
end
end
end


return p
return p

2018년 3월 6일 (화) 16:13 기준 최신판


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


local p={}

function p.FOR(frame)
	local imin=frame.args[1]
	local imax=frame.args[2]
	local sentence=frame.args[3]
	
	for i=imin,imax do
		print(sentence)
	end
end

return p