Guest User

Untitled

a guest
Jul 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. use strict;
  2. use warnings;
  3.  
  4. my $num;
  5.  
  6. # このコメントのままだとaaa、はずすとbbbと表示されます。
  7. # なぜでしょうか?
  8. # $num = 2;
  9.  
  10. $num ||= 1;
  11.  
  12.  
  13. my $str = $num == 1 ? 'aaa' : 'bbb';
  14.  
  15. print $str;
Add Comment
Please, Sign In to add comment