break out most of the code to ::PurePerl
[gitmo/Class-C3.git] / opt / c3.pm
CommitLineData
d401eda1 1
2## OPTIONAL MODULE
3# this module is supplied simply the use of this module
4# more aesthetically pleasing (at least to me), I think
5# it is much nicer to see:
6#
7# use c3;
8#
9# then to see a bunch of:
10#
11# use Class::C3;
12#
13# all over the place.
14
15package # ignore me PAUSE
16 c3;
17
18BEGIN {
19 use Class::C3;
20 *{'c3::'} = *{'Class::C3::'};
21}
22
231;