in reply to Re^3: " - " in the syntax
in thread " - " in the syntax

It, A fat comma string-ifies what's on the left of it...that only if it looks like a string.

Replies are listed 'Best First'.
Re^5: " - " in the syntax
by cdarke (Prior) on Mar 06, 2009 at 12:04 UTC
    See my first example. It appears that what looks like a string to a fat comma is diffferent to what looks like a string to a leading hyphen.
    my %a = (keys => 'v1', values => 'v2');
    gets stringified correctly, but:
    my %a = (-keys , 'v1', -values , 'v2');
    does not.