Help for this page

Select Code to Download


  1. or download this
    my @a=('abc',1);
    given (@a) {
    ...
        when (['abc',1]) { print "copy\n" ;continue}
        when (\@a    ) { print "self\n" }
    }
    
  2. or download this
    Argument "abc" isn't numeric in smart match at /home/lanx/tmp/ike_give
    +n.pl line 9.
    #
    copy
    self