Dear list,

Considering that this is valid;

if (now) <<<"yay">>>;
if (second) <<<"hurray">>>;

I feel that this should be valid as well;

if (now && true) <<<"this won't parse">>>;

However, it isn't; ChucK complains the "&&" operator can't be resolved on time and int. This is a issue as well;

if (second && true) <<<"This neither">>>;

of course we could go...
if (second) if (now) if (true) <<<"this is silly but runs">>>;

...but that looks a bit primitive.

Yours,
Kas.