Help for this page

Select Code to Download


  1. or download this
    $::i       # implicit, 
    $main::i   # explicit
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    sub two {
      print "$::i\n";
    }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    sub two {
      print "$_[0]\n";
    }