Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joyhuang9473/512369392db11ac1f2cf to your computer and use it in GitHub Desktop.
Save joyhuang9473/512369392db11ac1f2cf to your computer and use it in GitHub Desktop.
You may choose between =, (), and {}; the following are all correct:
int x = 3;
int x(3);
int x{3};
string name = "Some Name";
string name("Some Name");
string name{"Some Name"};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment