source: tags/initial/lib/ARB.pm

Last change on this file was 2, checked in by oldcode, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 972 bytes
Line 
1package ARB;
2
3use strict;
4use vars qw($VERSION @ISA @EXPORT);
5
6require Exporter;
7require DynaLoader;
8
9@ISA = qw(Exporter DynaLoader);
10# Items to export into callers namespace by default. Note: do not export
11# names by default without a very good reason. Use EXPORT_OK instead.
12# Do not simply export all your public functions/methods/constants.
13@EXPORT = qw(
14       
15);
16$VERSION = '0.01';
17
18bootstrap ARB $VERSION;
19
20# Preloaded methods go here.
21
22# Autoload methods go after =cut, and are processed by the autosplit program.
23
241;
25__END__
26# Below is the stub of documentation for your module. You better edit it!
27
28=head1 NAME
29
30ARB - Perl extension for blah blah blah
31
32=head1 SYNOPSIS
33
34  use ARB;
35  blah blah blah
36
37=head1 DESCRIPTION
38
39Stub documentation for ARB was created by h2xs. It looks like the
40author of the extension was negligent enough to leave the stub
41unedited.
42
43Blah blah blah.
44
45=head1 AUTHOR
46
47A. U. Thor, a.u.thor@a.galaxy.far.far.away
48
49=head1 SEE ALSO
50
51perl(1).
52
53=cut
Note: See TracBrowser for help on using the repository browser.