fork download
  1. #include <iostream>
  2.  
  3.  
  4. enum Color {
  5. Blue,
  6. Red,
  7. Green
  8. };
  9.  
  10.  
  11. int main() {
  12.  
  13. Color bg = Green;
  14.  
  15. std::cout << bg;
  16.  
  17. return 0;
  18.  
  19. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
2