Help for this page

Select Code to Download


  1. or download this
    for (my $i = 0; $i <= 3; $i++) {
    
  2. or download this
    for my $i (0..3) {
    
  3. or download this
      for ($x = 0; $x < 3; $x++) {
        $rand = rand(255);
    ...
      }
      $colors[$i] = "\#" . $hex[0] . $hex[1] . $hex[2];
    }
    
  4. or download this
      $hex[$_] = sprintf "%02x", rand(255) for 0..2;
    
  5. or download this
    $color[$_] = sprintf "#%02x%02x%02x", rand 255, rand 255, rand 255 for
    + 0..4;