Chinaunix首页 | 论坛 | 博客
  • 博客访问: 855448
  • 博文数量: 253
  • 博客积分: 6891
  • 博客等级: 准将
  • 技术积分: 2502
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-03 11:01
文章分类

全部博文(253)

文章存档

2016年(4)

2013年(3)

2012年(32)

2011年(184)

2010年(30)

分类: Python/Ruby

2011-10-11 10:01:36

//: it will give the defined value to the variable, even if the value is 0.
  1. use 5.010;

  2. foreach my $r (0, undef, '0', 9, "that"){
  3.     print "the is $r\n";
  4.     $s = $r // 'default';
  5.     print "$s\n";
  6. }


  7. the is 0
  8. 0
  9. the is
  10. default
  11. the is 0
  12. 0
  13. the is 9
  14. 9
  15. the is that
  16. that




阅读(287) | 评论(0) | 转发(0) |
0

上一篇:loop controls: last next redo

下一篇:rand

给主人留下些什么吧!~~