Help for this page

Select Code to Download


  1. or download this
    my(@a) = (1, 2, 3);
    my(@b) = (4, 5, 6);
    push @a, 'foo';
    print "a=@a b=@b\n";