Help for this page

Select Code to Download


  1. or download this
    my ($a,$b) = @_;
    
  2. or download this
    sub test1 {
      my ($a) = @_;
    ...
    
    test1(1,2,3,4,5,6,7);
    test2(1,2,3,4,5,6,7);
    
  3. or download this
    $a = 1
    @_= (1,2,3,4,5,6,7)
    
  4. or download this
    $a = 1
    @_= (2,3,4,5,6,7)