Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 281 Bytes

switch.md

File metadata and controls

20 lines (17 loc) · 281 Bytes

Switch

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