当前位置: 首页 > 工具软件 > NSIS > 使用案例 >

NSIS 变量

戚建华
2023-12-01

Var str1

Function StackOper

        Push "Hello"

        Pop $str1 ; $str1 = Hello

        Push "$str1 World"

        Pop $str1 ; $str1 = Hello World

        MessageBox MB_OK "$str1"

FunctionEnd

 类似资料: