You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider a Perl statement like this:
$last_index = $#array;
The hash mark here is treated like the start of an in-line comment; the text
"#array;" appears in comment style. In fact, this is normal Perl syntax for the
last valid index of an array.
I'm using whatever version is currently installed at StackOverflow.
Original issue reported on code.google.com by [email protected] on 30 Jun 2011 at 9:15
The text was updated successfully, but these errors were encountered:
Same here with css id selector, like:
@codeStart #id { attribute: value; } @codeEnd
The whole line ^ treated as comment.
Live example: http://jsfiddle.net/bN3gr/
Also caused by using hashes as delimiter in quote like operators
qq#test#;
And also by regex operators
s#a#b#;
both of these are normal alternative delimiters
Original issue reported on code.google.com by
[email protected]
on 30 Jun 2011 at 9:15The text was updated successfully, but these errors were encountered: