#include enum Level { LOW, MEDIUM, HIGH }; int main() { enum Level l = Level.MEDIUM; sout | "l :" | l; return 0; }