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