Help for this page

Select Code to Download


  1. or download this
    perl -E ' say for grep { not $_ % 2 | $_ % 3 | $_ % 4 | $_ % 5 } 1..10
    +0'
    60
    
  2. or download this
    $ perl -E ' say for grep { not $_ % 60 } 1..200'
    60
    120
    180
    
  3. or download this
    for my $i ( $from .. $to ) {
        say $i unless $i % 60;
    }