top of page
- Script Code -
dofile(reaper.AZ_GetLuaInitPath())
list = {}
count = 5
for i = 1,count do
list[i] = i
Msg(list[i])
end
- Warm Up -
準備の必要はありません
- Script Detail -
dofile(reaper.AZ_GetLuaInitPath())
Lua版RIGDOCKSの初期設定読み込み
list = {}
count = 5
listの配列を用意
count変数に整数5を追加
for i = 1,count do
list[i] = i
Msg(list[i])
end
ForLoopを1から5回ループを実行
listにiのインデックスを追加
Msg関数でLoop実行ごとにコンソールに出力
- API LINK -
Beginner
AZ_list
指定数を配列に登録
bottom of page