Tuesday, December 25, 2012

Perl 의 my command

local variable 정의시에 쓴다. 보통 다른 스크립트 언어의 local 이라는 키워드와 같다고 생각하면 된다.
예) 다음과 같이 쓰면 for 블럭 내의 print 문은 실행이 되지만 바깥쪽의 print 문은 실행이 안된다.
 for (1..5) {  
   my $s = "hello\n"  
   print $s;  
 }  
 print $s;  
My command in perl? I can't for the life of me figure out what this command means...

No comments:

Post a Comment