Preview:
public class AssertionExample {
    public static void main(String[] args) {
        int age = 26;

        // simple assertion to check if age is greater than or equal to 18
        assert age >= 18 : "Age must be 18 or older";

        // Rest of the program
        System.out.println("Program continues after the assertion check");

        // More code...
    }
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter