Changeset 4092 for src/perl5

Show
Ignore:
Timestamp:
05/29/05 14:11:48 (4 years ago)
Author:
iblech
svk:copy_cache_prev:
5515
Message:

* Usual svn properties
* src/perl5/README -- More PODification and spelling fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/perl5/README

    • Property svn:mime-type set to text/plain; charset=UTF-8
    • Property svn:eol-style set to native
    r4088 r4092  
    1 =head1 Perl5 support in pugs 
     1=head1 Perl 5 support in Pugs 
    22 
    3 This document describes the bi-directional perl5 compatibility support. 
     3This document describes the bi-directional Perl 5 compatibility support. 
    44 
    55=head1 TODO 
    66 
    7 =head2 perl6 calling perl5 
     7=head2 Perl 6 calling Perl 5 
    88 
    99=over 
    1010 
    11 =item export 
     11=item Exportation 
    1212 
    13 perl5_apply needs to push itself to additional caller stack, so 
    14 Exporter will try to modify a tied namespace, which then export 
    15 them to actual caller p6 namespace. 
     13C<perl5_apply> needs to push itself to additional caller stack, so 
     14C<Exporter> will try to modify a tied namespace, which then export 
     15them to actual caller P6 namespace. 
    1616 
    17 =item reference args 
     17=item Reference args 
    1818 
    19 make getopt::long work. 
     19Make C<Getopt::Long> work. 
    2020 
    2121=back 
    2222 
    23 =head2 perl5 calling perl6 
     23=head2 Perl 5 calling Perl 6 
    2424 
    2525=over 
    2626 
    27 =item libpugs.so 
     27=item C<libpugs.so> 
    2828 
    29 to be natively embedded in perl5 
     29To be natively embedded in Perl 5. 
    3030 
    31 =item export 
     31=item Exportation 
    3232 
    33 get the "is export" functions and refer them to perl5 symbol table. 
    34  
     33Get the C<is export> functions and refer to them in the Perl 5 symbol table. 
    3534 
    3635=back