正常写法:
[root@trffic2 perl]# cat three.pl
#!/usr/bin/perl
if(1>0.1){
print "yeah\n";
}
else{
print "sorry\n";
}
变态写法:
方法一、
[root@trffic2 perl]# cat threeif.pl
#!/usr/bin/perl
(1>0.1)?print "yeah\n":print "sorry\n";
方法二、
[root@trffic2 perl]# cat t.pl
#!/usr/bin/perl
(1>0.1)?do{print "yeah\n"}:do{print "sorry\n"};
阅读(812) | 评论(0) | 转发(0) |