File: Function.pm

package info (click to toggle)
libextutils-builder-perl 0.018-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 276 kB
  • sloc: perl: 1,352; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 144 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Function;

use strict;
use warnings;

use Exporter 5.57 'import';
our @EXPORT = qw/callback/;

sub callback {
	$::callback->(@_);
}

1;