source: trunk/essentials/dev-lang/perl/t/lib/NoExporter.pm

Last change on this file was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 134 bytes
Line 
1package NoExporter;
2
3$VERSION = 1.02;
4sub import {
5 shift;
6 die "NoExporter exports nothing. You asked for: @_" if @_;
7}
8
91;
10
Note: See TracBrowser for help on using the repository browser.