使用Data::Dumper
摘要:
==use strict;use warnings;use Data::Dumper;my %hash = ( 'name' => 'zdd', 'id' => 1234,);print Dumper(\%hash); # use reference here to get a better output. == 阅读全文
posted @ 2012-11-18 01:30 perlman 阅读(1150) 评论(0) 推荐(0) 编辑