# Enum --- A symbol associated with a type ```text Enum[TYPE; Collection[.symbol : Const[Value]]] ``` ## Definition Example ```text E : Enum[I64; .a; .b; .c] `log E Enum[I64; .a : 0; .b : 1; .c : 2] ```