File: README

package info (click to toggle)
libperl6-export-perl 0.009-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 106; makefile: 7
file content (43 lines) | stat: -rw-r--r-- 770 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Perl6::Export version 0.009
=========================

This module prototypes the Perl 6 'exported' and 'exportable' traits
in Perl 5.

Instead of messing around with @EXPORT arrays, you just declare which subs
are to be exported (or are exportable on request) as part of those subs.

For example:

	sub foo is exported {		# by default
		...
	}

	sub bar is exportable {		# on request
		...
	}


INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  Filter::Simple


COPYRIGHT AND LICENCE

Copyright (C) 2003 Damian Conway

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.