This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update CPAN.pm to 1.93_03
[perl5.git] / lib / CPAN / DeferedCode.pm
CommitLineData
547d3dfd
SP
1package CPAN::DeferedCode;
2
3use strict;
4use vars qw/$VERSION/;
5
6use overload fallback => 1, map { ($_ => 'run') } qw/
7 bool "" 0+
8/;
9
10$VERSION = "5.50";
11
12sub run {
13 $_[0]->();
14}
15
161;