Help for this page

Select Code to Download


  1. or download this
    my $i = 10;
    &print_i;
    ...
    sub print_i{
        print "$i\n";
    }
    
  2. or download this
    our $i = 10;
    ....
    
  3. or download this
    our $i;
    ...
    sub print_i{
        print "$i\n";
    }