local arrValue = { "A1", "B2" }
local str = ""
for index = 1, #arrValue do
str = str .. index .. ": " .. tostring(arrValue[index]) .."\n"
end
'[ Programing ] > Lua Scirpt' 카테고리의 다른 글
[Lua] Bit Flag (0) | 2023.02.28 |
---|---|
[Lua] current Time (0) | 2023.02.28 |
[Lua] 일일 체크 및 기준 시간 (0) | 2023.02.28 |
[Lua] Sleep (0) | 2023.02.28 |
[Lua] 형변환 (1) | 2022.11.10 |