Skip to content
⌘ NSIS Forum Archive

Difference of 'some valaue' and "some value"

3 posts

xirisone#

Difference of 'some valaue' and "some value"

Hi there,

is there a difference between 'xxxx' and "xxxx" ?

E.g. will the following samples work differently?

${If} $0 == 'some value'
; do something
${EndIf}

${If} $0 == "some value"
; do something
${EndIf}

TIA,
xirisone
Red Wine#
Between 'xxxx' and "xxxx" there is not difference, check out the manual,

Joel#
Re: Difference of 'some valaue' and "some value"

Originally posted by xirisone
Hi there,

is there a difference between 'xxxx' and "xxxx" ?

E.g. will the following samples work differently?

${If} $0 == 'some value'
; do something
${EndIf}

${If} $0 == "some value"
; do something
${EndIf}

TIA,
xirisone
Well...there's ony way to find out... try try try 😞