$ perl6
> my $a = 0;say "$a [-"
Unable to parse infixish, couldn't find final ']' at line 1
> my $a = 0; say "$a [-]"
0 [-]
> my $a = 0; say "$a [--]"
Unable to parse infixish, couldn't find final ']' at line 1
> my $a = 0;say "$a ["
0 [
> my $a = 0;say "$a "
0
> say "["
[
> say "[-"
[-

Is the parsing error given by the code above showing a bug of rakudo?
Or, maybe there's just some information about double quoted strings I
don't know.

Reply via email to