我们经常直接用匿名散列构造数据结构:
my $student = { last => 'Smith', first => 'John', bday => '01/08/72' }; $student->{last} = 'Smith'; ....