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