local a = {10, 20, 30, 40, 50, 60, 70, 80, 90}
-- print all values of array 'a'
for i,v in ipairs(a) do print(v) end
자매품으로 pairs 가 있음 : pairs vs ipairs
Wednesday, May 2, 2012
ipairs
ipairs 는 basic Lua library 가 제공하는 iterator
Labels:
Lua
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment