I have come across a bug in the way perl source is rendered. If the code includes a scalar reference to a string literal, then the BC3 source code formater appears to treat the opening quote as escaped, so everthing after the closing quote is treated as part of a string.
example:
example:
Code:
#!/usr/bin/perl # Works my $string = 'some text'; my $stringRef = \$string; # Does not work. my $stringRef = \'some text'; # This line is treated as part of a string starting at the end of the line above.
Comment