Help for this page

Select Code to Download


  1. or download this
    use constant {
      zed     => 0,
    ...
      repos   => (qw(oss non-oss debug)),
      two     => 2,
    };
    
  2. or download this
    {
      zed     => 0,
    ...
      repos   => (qw(oss non-oss debug)),
      two     => 2,
    }
    
  3. or download this
    c:\@Work\Perl\monks>perl -wMstrict -MData::Dumper -le
    "print Dumper {
    ...
              'zed' => 0,
              'two' => 2
            };
    
  4. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "use constant [ qw(a b c d) ];
    ...
     print A;
    "
    bcd