18 lines
241 B
Text
18 lines
241 B
Text
Function IntegerComparison
|
|
Push $0
|
|
Push $1
|
|
|
|
StrCpy $0 8
|
|
StrCpy $1 2
|
|
|
|
${If} $0 == $1
|
|
DetailPrint "$0 = $1"
|
|
${ElseIf} $0 < $1
|
|
DetailPrint "$0 < $1"
|
|
${ElseIf} $0 > $1
|
|
DetailPrint "$0 > $1"
|
|
${EndIf}
|
|
|
|
Pop $1
|
|
Pop $0
|
|
FunctionEnd
|