Macro vs Function - NSIS
Example 1.2.7 says
Shouldn't it be:
Because otherwise the value "World" of $0 would not be used.
Example 1.2.7 says
PHP Code:
Section Test
Push "World"
; ...
Exch $0
; ...
DetailPrint "Hello World"
Pop $0
; ...
SectionEnd
PHP Code:
Section Test
Push "World"
; ...
Exch $0
; ...
DetailPrint "Hello $0"
Pop $0
; ...
SectionEnd
Comment