メインコンテンツまでスキップ
バージョン:25.2

step

  • keyword, property of a range

  • Examples: +

     repeat with x=1 to 9 step 2
    put x
    end repeat
     put 100 .. 160 step 10 as a list —> [100,110,120,130,140,150,160]
     set pricePoints to 10 .. 30 by 5
    put the step of pricePoints —> 5