in reply to Problem w/ single-quoted strings
Concerning your code sample, the first line prints the word 'Testing' followed by the characters '\' and 'n'. The second line prints the word 'Testing' followed by a backslash, created by escaping a backslash (\\), followed by 'n'. The third line prints the word 'Testing' followed by a backslash created by escaping a backslash, followed by the characters '\' and 'n'.print 'Testing ';
bassplayer
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Problem w/ single-quoted strings
by eweibust (Initiate) on May 13, 2004 at 19:56 UTC | |
by bassplayer (Monsignor) on May 14, 2004 at 05:36 UTC |