Help for this page

Select Code to Download


  1. or download this
    package My::Language::Dutch;
    use strict;
    ...
    }
    
    1;  # IMPORTANT -- modules have to return a true value at the end
    
  2. or download this
    use My::Language::Dutch;
    
    my $blue_dutch = My::Language::Dutch->get_word( 'blue' );
    
  3. or download this
    my $language = 'Dutch';
    require "My/Language/$language.pm";
    
    my $class = "My::Language::$language";
    my $blue = $class->get_word( 'blue' );