diff options
| author | Paul Buetow (pluto.buetow.org) <paul@buetow.org> | 2013-09-28 21:55:10 +0200 |
|---|---|---|
| committer | Paul Buetow (pluto.buetow.org) <paul@buetow.org> | 2013-09-28 21:55:10 +0200 |
| commit | 6444bb641cef5e487655aec0b537be25b231091b (patch) | |
| tree | c07818cc638778db203e0f621c3894cd1bfb7234 /Xerl/Base.pm | |
| parent | 7da5436ceb9179d107550f3f563b5119c1cf0310 (diff) | |
use v5.10.0
Diffstat (limited to 'Xerl/Base.pm')
| -rw-r--r-- | Xerl/Base.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Xerl/Base.pm b/Xerl/Base.pm index 87d22b0..b85d6fe 100644 --- a/Xerl/Base.pm +++ b/Xerl/Base.pm @@ -10,6 +10,8 @@ package UNIVERSAL; use strict; use warnings; +use 5.10.0; + use Data::Dumper; sub new ($;) { @@ -100,12 +102,12 @@ sub AUTOLOAD { } elsif ( $auto =~ /.*::dumper$/ ) { - print Dumper @_; + say Dumper @_; return undef; } else { - print "$auto is not a method of $self or UNIVERSAL\n"; + say "$auto is not a method of $self or UNIVERSAL"; } return $self; |
