Help for this page

Select Code to Download


  1. or download this
    my @arr1 = (2, 34);
    say "34" if @arr1 ~~ 34;
    
    #no output...??
    
  2. or download this
    my @arr1 = ('hello', 'goodbye');
    say "array size is 2" if @arr1 ~~ 2;