enum Colors # of uint8 TODO when int sizes are supported Red = 2 Green Blue class Test def main is shared c as Colors = Colors.Red assert c == Colors.Red assert c <> Colors.Green assert c is Colors.Red # .warning. value types assert c is not Colors.Green # .warning. value types