File: universal.pm

package info (click to toggle)
libautobox-perl 3.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 876 kB
  • sloc: perl: 1,561; ansic: 143; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package autobox::universal;

use strict;
use warnings;

use autobox (); # don't import()

use Exporter (); # perl 5.8.0 doesn't support "use Exporter qw(import)"

our @ISA = qw(Exporter);
our @EXPORT_OK = qw(type);

1;