static void assertTrue(O o) { if (!(isTrue(o) || isTrue(pcallF(o)))) fail(str(o)); } static bool assertTrue(S msg, bool b) { if (!b) fail(msg); ret b; } static bool assertTrue(bool b) { if (!b) fail("oops"); ret b; }