Skip to content

Instantly share code, notes, and snippets.

@kamipo
Created April 1, 2009 08:46
Show Gist options
  • Save kamipo/88613 to your computer and use it in GitHub Desktop.
Save kamipo/88613 to your computer and use it in GitHub Desktop.
package Mod3;
use strict;
use warnings;
use base qw/Exporter/;
use Data::Dumper;
sub import {
strict->import;
warnings->import;
goto &Exporter::import;
}
our @EXPORT = qw/p/;
sub p {warn Dumper shift}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment