my LIST |
聲明變量在LIST中,在詞法範圍內封閉塊。如果指定了一個以上的變量,所有變量都必須用括號括起來。
無
試試下麵的例子:
#!/usr/bin/perl -w #by www.gitbook.net my $string = "We are the world"; print "$string\n"; myfunction(); print "$string\n"; sub myfunction { my $string = "We are the function"; print "$string\n"; mysub(); } sub mysub { print "$string\n"; }
這將產生以下結果:
We are the world
We are the function
We are the world
We are the world