Standard for structure: Loops 5 times, printing the multiples of 5 from 0-20
for ( $number = 0; $number <= 20; $number += 5 ) { print "$number "; } print "\n";