Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    package TutorialConfig;
    ...
    
            return $self->{$key};
        }
    
  2. or download this
        use TutorialConfig;
    
    ...
        print "The author's first name is ", 
                 $tut->get('author.firstname'), 
                 ".\n";