As Tutorials: Basic debugging checklist teaches, use B::Deparse to see how perl interprets the code
$ perl -MO=Deparse,-p test.pl use warnings; use strict; (my $tmp = 2); (my $var = 3); print((($var > $tmp) ? 'yes' : 'no')); print("\n"); ((exit($var) > $tmp) ? '???' : '???'); test.pl syntax OK
In reply to Re: exit EXPR?
by Anonymous Monk
in thread exit EXPR?
by timpoiko
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |