Help for this page

Select Code to Download


  1. or download this
    use feature qw(say);
    
    say qq(no match) unless (1, 4, 18) ~~ 4;
    say qq(match) if (1, 4, 18) ~~ 18;
    
  2. or download this
    no match
    
    match