Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Created April 27, 2020 02:35
Show Gist options
  • Save domiyanyue/dc98be0138630000804d07d0fa87cb70 to your computer and use it in GitHub Desktop.
Save domiyanyue/dc98be0138630000804d07d0fa87cb70 to your computer and use it in GitHub Desktop.
example struct enum compilation explain
struct Point {
int x;
int y;
};
enum Color { black = 0, white = 1, grey = 2};
Point p;
Color c = Color::black;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment