Help for this page

Select Code to Download


  1. or download this
    {
     my $num = 0;
    ...
        print $num, "\n";
     }
    }
    
  2. or download this
    sub count_it {
       our $num ||= 0;
    ...
       our $num ||= 0;
       print $num, "\n";
    }