You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
165 B
Raku

LOOP: for ( $number = 1; $number <= 10; ++$number ) {
next LOOP if ( $number % 2 == 0 );
print "$number "; # displays only odd numbers
}