Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    
    ...
        when(int) { say 'match' } # int($_) ~~ $x
        default { say 'no match' }
    }
    
  2. or download this
    use Modern::Perl;
    
    ...
        when($_) { say 'match' } # $_ ~~ $x
        default { say 'no match' }
    }
    
  3. or download this
    use Modern::Perl;
    use warnings;
    ...
            say 'no match';
        }
    }