Java tutorial
//package com.java2s; // Clark & Parsia, LLC parts of this source code are available under the terms of the Affero General Public License v3. public class Main { public final static void assertTrue(boolean condition) { if (!condition) { throw new RuntimeException("assertion failed."); } } }