예) 다음과 같이 쓰면 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...
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