http://qs1969.pair.com?node_id=722560


in reply to $:: is used

$:
The current set of characters after which a string may be broken to fill continuation fields (starting with ^) in a format. Default is " \n-", to break on whitespace or hyphens. (Mnemonic: a "colon" in poetry is a part of a line.)

See perldoc

allan

Replies are listed 'Best First'.
Re^2: $:: is used
by Anonymous Monk on Nov 10, 2008 at 06:23 UTC
    perl -MO=Deparse,-p -e"die $::" die($main::); -e syntax OK
    $::foo is $main::foo