Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 221 Bytes

declaration.md

File metadata and controls

12 lines (10 loc) · 221 Bytes

Declaration

To declare an enum, you write enum followed by a name for the enumeration and the names of the different possibilities separated by commas.

enum StopLight {
    RED,
    YELLOW,
    GREEN
}