Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Fruit;
    ...
    print "\nAPPLE = $apple->{Value}";
    $apple->increase;
    print "\nAPPLE = $apple->{Value}";
    
  2. or download this
    use strict;
    package Fruit::Apple;
    ...
      $self->{Value}++;
    }
    return 1;