stop the redefine warnings?
[gitmo/Class-C3.git] / opt / c3.pm
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
15 package # ignore me PAUSE
16     c3;
17
18 BEGIN { 
19     use Class::C3;
20     *{'c3::'} =  *{'Class::C3::'};
21 }
22
23 1;