"Eric Brine" (via RT) <perlbug-followup@perl.org> wrote on Fri, 22 Jun 2012 12:57:15 PDT: > $ perl -E'"abc" =~ /(b)/; say "@+"' > 2 2 > > $ perl -E'@_ = qw( a b c ); say "@_"' > a b c > > $ perl -E'@. = qw( a b c ); say "@."' > @. > > $ perl -E'@. = qw( a b c ); say "@{.}"' > a b c > > What's up with #3? What's up with *#4*? How in the world is dot a legal name inside braces without quotes around it? --tomThread Previous | Thread Next