Pixel Pedals of Tomakomai

北海道苫小牧市出身の初老の日常

typoなんだけどなあ

当たり前っちゃあ当たり前なんですが。

% perl
print "True(1)?n" if 10 >= 20;
print "True(2)?n" if 10 => 20;

# 結果
# True(2)

=> はカンマとして評価されるので、typo であってもコンパイルエラーになりません。use warnings してれば、warn にはなります。

Useless use of a constant in void context at - line 2.