Help for this page

Select Code to Download


  1. or download this
    My first question is whether I had to use
    
    require Exporter;
    ...
    our @ISA = qw(Exporter);
    our @EXPORT =
      qw(  get_config get_trans get_from_lang get_to_lang reverse_trans);
    
  2. or download this
    # t/01-get_config.t
    use strict;
    ...
    ok($key eq 'blahblah', "get_config() : key has correct value"); $num_t
    +ests++;
    # END
    done_testing($num_tests);