Help for this page

Select Code to Download


  1. or download this
    sub one {
     my $x = "we are in one()\n";
    ...
    }
    
    one();
    
  2. or download this
    sub one {
     our $x = "we are in one()\n";
    ...
    }
    
    one();