Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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.");
        }
    }
}