static void assertTrue(O o) { if (!(eq(o, true) /*|| 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; } sbool assertTrue(Scorer scorer, bool b) { scorer.add(b); ret b; }