Help for this page

Select Code to Download


  1. or download this
    f(@a)
    
  2. or download this
    f($a[0], $a[1], $a[2], ...)
    
  3. or download this
    my @empty;
    f(@empty)
    
  4. or download this
    f()
    
  5. or download this
    sub f(;\@)
    
  6. or download this
    f(@a)     # Calls &f(\@a)
    
  7. or download this
    f()       # Calls &f()
    
  8. or download this
    f($x, $y)