Help for this page

Select Code to Download


  1. or download this
    my %colorhash = ( CCgray => "0","0","0", CCwhite => "1","0","0", CCgrey => "0","2","0", CCBlue => "0","0","3", );
  2. or download this
    my %colorhash = ( 
      CCgray  => "0",
    ...
      CCBlue  => "0",
      "0"     => "3",
    );
    
  3. or download this
    my %colorhash = ( 
      CCgray  => [ "0","0","0" ], 
    ...
      CCgrey  => [ "0","2","0" ],
      CCBlue  => [ "0","0","3" ],
    );
    
  4. or download this
    my %colorhash = ( 
      CCgray  => [ 0, 0, 0 ], 
    ...
      CCgrey  => [ 0, 2, 0 ],
      CCBlue  => [ 0, 0, 3 ],
    );