关于博客

    之前一直使用wordpress,因为个人工作比较忙,没有空搭理,所以将一些有价值的文章都迁移至博客园,欢迎大家一起来交流

use strict;
use warnings;
use Data::Dumper;
my $Profile = {
    Name       => '马辰龙',
    Age        => '29',
    Profession => 'system integration',
    Like       => [ 'linux', 'perl', 'AIX', 'Regular', '骑行', '旅游' ],
    Company    => '37游戏',
    City       => '广州',
    QQ         => '287031711',
    Mail       => 'mcshell@live.cn',
    Motto      => '宁愿失败,也不要凑巧的成功'
};
print Dumper $Profile;
原文地址:https://www.cnblogs.com/mcshell/p/5655850.html