Help for this page

Select Code to Download


  1. or download this
    sub increaseNumber {
        my $value = 001
        return $value + 1
    };
    
  2. or download this
    my $value = 1;
    sub increaseNumber {
        return ++$value;
    };