(boolean condition)
| 32 | public static final boolean debugMatcher = true; |
| 33 | |
| 34 | public static void Check(boolean condition) |
| 35 | { |
| 36 | if (!condition) |
| 37 | throw new Error("Condition failed check"); |
| 38 | } |
| 39 | |
| 40 | public static void println(String message) |
| 41 | { |