NSIS——for循环的使用方法

!include "LogicLib.nsh"
OutFile "Test_Loop.exe"
Section Main 01


${ForEach} $R0 0 100 + 5
  MessageBox MB_OK $R0
${Next}

${For} $R1 0 10
  MessageBox MB_OK $R1
${Next}

SectionEnd

你可能感兴趣的:(include)