Help for this page

Select Code to Download


  1. or download this
    sub is_prime
    {
    ...
    my @numbers = 1 .. 20;
    
    print join ";", grep { is_prime($_) } @numbers;