Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 361 Bytes

equality.md

File metadata and controls

23 lines (19 loc) · 361 Bytes

Equality

You can check if two enums contain the same variant using the == operator.

enum StopLight {
    RED,
    YELLOW,
    GREEN
}

void main() {
    StopLight light = StopLight.RED;
    
    if (light == StopLight.RED) {
        System.out.println("You must stop");
    }
    else {
        System.out.println("Full speed ahead!");
    }
}