mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-02-03 10:33:25 +08:00
11 lines
125 B
C++
11 lines
125 B
C++
#include <iostream>
|
|
using namespace std;
|
|
|
|
enum Color {RED,BLUE};
|
|
enum Feeling {EXCITED,BLUE};
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|