#!/usr/bin/perluse warnings;use strict;my $n = 0;do { { next if ($n % 2); print $n, "\n"; } } while ($n++ < 10);