有没有内置的方法来创建连续整数列表?

is there a built in way to create a list of consecutive integers?

我正在寻找一种内置方法来创建连续整数列表:1 到 n。
即:[0 1 2 3 4 5 6 7 8]

它存在吗?目前我正在手动创建列表,这很浪费。

手动方法:let group-list [0 1 2 3 4 5 6 7 8]

找到答案:

show n-values 9 [?] 会显示 [0 1 2 3 4 5 6 7 8]
show n-values 9 [? + 1] 将显示 [1 2 3 4 5 6 7 8 9]