Skip to content

Instantly share code, notes, and snippets.

@cutecycle
Created August 15, 2020 06:00
Show Gist options
  • Save cutecycle/8f19f1b651358784bd5a631bba3fe66e to your computer and use it in GitHub Desktop.
Save cutecycle/8f19f1b651358784bd5a631bba3fe66e to your computer and use it in GitHub Desktop.
#include <iostream>
struct blah {
const int x;
};
int main() {
const int x = 5;
const int y = 3;
blah hoo = {
.x= 13
};
std::cout << hoo.x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment