Help for this page

Select Code to Download


  1. or download this
    package Camel;
    use strict;
    ...
    sub DESTROY {
      print "My camel has sadly passed away.\n";
      }
    
  2. or download this
    use strict;
    use Camel;
    ...
      my $jimmy=Camel->new();
    }
    #$jimmy is now out of scope and will be DESTROYed.