• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H09-Mar-2004-4530

ChangesH A D09-Mar-2004586 3816

Export.pmH A D09-Mar-20044.4 KiB18559

MANIFESTH A D27-Feb-200472 87

Makefile.PLH A D09-Mar-2004179 107

READMEH A D09-Mar-20041.3 KiB6636

README

1==============================================================================
2                   Release of version 0.07 of Perl6::Export
3==============================================================================
4
5
6Perl6/Export version 0.01
7=========================
8
9This module prototypes the Perl 6 'exported' and 'exportable' traits
10in Perl 5.
11
12Instead of messing around with @EXPORT arrays, you just declare which subs
13are to be exported (or are exportable on request) as part of those subs.
14
15For example:
16
17	sub foo is exported {		# by default
18		...
19	}
20
21	sub bar is exportable {		# on request
22		...
23	}
24
25
26INSTALLATION
27
28To install this module type the following:
29
30   perl Makefile.PL
31   make
32   make test
33   make install
34
35DEPENDENCIES
36
37This module requires these other modules and libraries:
38
39  Filter::Simple
40
41
42COPYRIGHT AND LICENCE
43
44Copyright (C) 2003 Damian Conway
45
46This library is free software; you can redistribute it and/or modify
47it under the same terms as Perl itself.
48
49
50
51==============================================================================
52
53CHANGES IN VERSION 0.07
54
55
56	- Minor doc bug fix
57
58
59==============================================================================
60
61AVAILABILITY
62
63Perl6::Export has been uploaded to the CPAN
64
65==============================================================================
66