/** * CSE 331 16sp section 3 * Assertion demo. Run with and without assertions enabled */ public class AssertionDemo { public static void main(String[] args) { int x = 1; int y = 2; assert x + y > 3; System.out.println("You did not enable assertions!"); } }