C++25

PHOTO EMBED

Sat Sep 17 2022 08:11:33 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
enum colour 
{
  green, red, blue, white, yellow, pink
};
int main()
{
  cout << green << " " <<
  red << " " << blue << " " << 
  white << " " << yellow << " " << pink;
  return 0;
}
content_copyCOPY