in reply to Re: What is the difference between a Statement and an Expression?
in thread What is the difference between a Statement and an Expression?
is the same asprint $foo ? "True\n" : "False\n";
See do.print do { if ($foo) { "True\n" } else { "False\n" } };
|
|---|