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