Archive: how can we write " in a var?


how can we write " in a var?
hello,

I would like to print a " in a var. How can we do this ?

\" does not seem to work :(


I found myself the answer, so here it is:

MessageBox MB_OK "I'll be happy" ; this one puts a ' inside a string

MessageBox MB_OK 'And he said to me "Hi there!"' ; this one puts a " inside a string

MessageBox MB_OK `And he said to me "I'll be fucked!"` ; this one puts both ' and "s inside a string:

Bye
:D