Help for this page

Select Code to Download


  1. or download this
    sub f1
    {
    my ($x, $y) = @_;
    z($x, $y);
    }
    
  2. or download this
    sub f2
    {
    z($_[0], $_[1]);
    }
    
  3. or download this
    sub z
    {
    ...
    my $x = 4;
    f1($x, $x);
    
  4. or download this
    sub z
    {
    ...
    }
    my $x = 4;
    f2($x, $x);