Help for this page

Select Code to Download


  1. or download this
      package Foo::Bar ;
      .....
      our $VERSION = "0.00" ;
      .....
    
  2. or download this
      my $obj = new Foo::Bar (...) ;
    
  3. or download this
      package Foo::Bar ;
    
    ...
      sub new { return bless [], shift ; } ;
    
      1 ;
    
  4. or download this
      package Foo ;
    
    ...
      } ;
    
      1 ;
    
  5. or download this
      use strict ; use warnings ;
    
    ...
      my $obj = new Foo::Bar ;
    
      print $obj->version(), "\n" ;
    
  6. or download this
      1.01