integer 중에서는 0 만 false 값이고 나머지는 모두 true 로 취급된다.
my @a = (-3 .. 3);
foreach(@a){
if($_){
print("$_ is True\n");
}else{
print("$_ is False\n");
}
}
키워드 : boolean
my @a = (-3 .. 3);
foreach(@a){
if($_){
print("$_ is True\n");
}else{
print("$_ is False\n");
}
}
키워드 : boolean
No comments:
Post a Comment