Help for this page

Select Code to Download


  1. or download this
    my $string = "1:00";
    if ( do { no warnings qw( numeric ); int( $string ) } > 3 ) {
    ...
    } else {
       say "< 4";
    }
    
  2. or download this
    my $string = "1:00";
    if ( do { no warnings qw( numeric ); $string >= 4 } ) {
    ...
    } else {
       say "< 4";
    }