Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl
    
    ...
    $lexicon->insert_after($insert_this->tokens());
    
    print $doc->serialize();
    
  2. or download this
    package My::L10N::en;
    
    use base 'My::L10N';
    ...
        'Some [_1] text',
    
    );
    
  3. or download this
    package My::L10N::en;
    
    use base 'My::L10N';
    ...
        'The [_1] is in the [_2]' =>
        'The [_1] is in the [_2]',
    );
    
  4. or download this
    #! /usr/bin/perl
    
    ...
    }
    
    print $doc->serialize();