数组的数组

1 $a = [
2     [1, 2, 3],
3     [4, 5, 6],
4     [7, 8, 9]
5 ]

哈希的哈希

 1 my $student_properties_of = {
 2     'zdd' => {
 3         'age' => 30,
 4         'hight' => 170,
 5         'id' => '001',
 6     },
 7 
 8     'autumn' => {
 9         'age' => 27,
10         'hight' => 165,
11         'id' => '002',
12     }
13 } ;

 

posted on 2016-03-19 09:26  cjbourne  阅读(160)  评论(0)    收藏  举报