/ Published in: Perl
Expand |
Embed | Plain Text
#standard debug Data Dumper sub DD { #DD(anything) my (@ref) = @_; $Data::Dumper::Indent = 1; } #standard debug Dump to File sub DTF { #DTF($filename, anything) my ($file, @args) = @_; $Data::Dumper::Indent = 1; }
You need to login to post a comment.
