fork download
  1. #define COLOR \
  2. red = 1,\
  3. blue = 10,\
  4. green = 12,
  5.  
  6. class skirtColor{
  7. enum Color{
  8. COLOR
  9. };
  10. };
  11. class dressColor {
  12. enum Color{
  13. COLOR
  14. Pink,
  15. yellow,
  16. };
  17. };
  18. class pantsColor {
  19. enum Color {
  20. COLOR
  21. Brown,
  22. };
  23. };
  24. int main()
  25. {
  26.  
  27. }
Success #stdin #stdout 0s 2924KB
stdin
Standard input is empty
stdout
Standard output is empty