<div dir="ltr">Dear list,<br><br>Considering that this is valid;<br><br>if (now) &lt;&lt;&lt;&quot;yay&quot;&gt;&gt;&gt;;<br>if (second) &lt;&lt;&lt;&quot;hurray&quot;&gt;&gt;&gt;;<br><br>I feel that this should be valid as well;<br>
<br>if (now &amp;&amp; true) &lt;&lt;&lt;&quot;this won&#39;t parse&quot;&gt;&gt;&gt;;<br><br>However, it isn&#39;t; ChucK complains the &quot;&amp;&amp;&quot; operator can&#39;t be resolved on time and int. This is a issue as well;<br>
<br>if (second &amp;&amp; true) &lt;&lt;&lt;&quot;This neither&quot;&gt;&gt;&gt;;<br><br>of course we could go...<br>if (second) if (now) if (true) &lt;&lt;&lt;&quot;this is silly but runs&quot;&gt;&gt;&gt;;<br><br>...but that looks a bit primitive.<br>
<br>Yours,<br>Kas.<br></div>