Perl 연상배열
2차원 배열 / 연상배열 / 조합배열 - 2009/04/08 리스트를 이용하여 스왑(SWAP) ($a,$b)=($b,$a); $a=10; $b=20; ($a,$b)=($b,$a); print $a.$b; 해시의 해시 %hash_list=( language=>{p=>"perl",c=>"c",r=>"ruby"}, teacher=>{l=>"lvuno",z=>"zesrever",m=>"monsterpk"}, education=>{one=>401,two=>405,three=>206}, ); print "$hash_list{language}->{p}\n"; print "$hash_list{teacher}{z}\n"; print "$hash_list{education}->{one}\n"; print "$hash_li..
2009. 4. 8.