Help for this page
$j = 1 until ($j == 255) { ... $j++; ... }
$j = 1; while ($j < 256) { ... }
for my $j (1..256) { }