in reply to Forward slashes around argument
You may be confusing / with \ (back slash). Back slash is used in may languages to "escape" a following character to alter the character's meaning. For example you can use \ to quote a " in a string so that the " doesn't terminate the string: my $str = "The coder said \"This string is quoted\".";.
|
|---|