in reply to Looping

#!/usr/bin/perl use strict; use warnings; my $year = (localtime(time))[5]; print 1900+$year--,$/ while $year >= 3;

~Particle *accelerates*