top of page
11
Beginner
AZ_tableSort
配列を昇順に並び替える
RANK
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
t = {"A","C","D","B"}
table.sort(t)
for i = 1,4 do
Msg(t[i])
end
t = {"p10000","em2500","p11500","p11800"}
table.sort(t)
for i = 1,4 do
Msg(t[i])
end
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
Msg コンソール出力関数をセット
t = {"A","C","D","B"}
配列を定義する。
table.sort(t)
配列を並び替える。
for i = 1,4 do
Msg(t[i])
end
配列のインデックス(1~4)の値をコンソールへ出力する。
t = {"p10000","em2500","p11500","p11800"}
table.sort(t)
配列を定義し並び替える。
for i = 1,4 do
Msg(t[i])
end
配列のインデックス(1~4)の値をコンソールへ出力する。
To use the API, you need to sign up for a plan.
Download the dedicated API
need to do it.
*SILVER is scheduled to be released in May.
準備の必要はありません
- Script Code -
- Script Image -
- Warm Up -
- Script Detail -
- API -
- Script Image -
bottom of page