Help for this page

Select Code to Download


  1. or download this
        my @a1 = qw/357/;
        my @a2 = qw/3 5 7/;
    
        print "@a1\n";
        print "@a2\n";
    
  2. or download this
        357
        3 5 7
    
  3. or download this
        sub areq {
            local $" = $;;
            "@{$_[0]}" eq "@{$_[1]}";
        }