Skip to content

Instantly share code, notes, and snippets.

@lefticus
Created May 25, 2016 04:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lefticus/2407873080b09c49896fd08a9b3ff937 to your computer and use it in GitHub Desktop.
Save lefticus/2407873080b09c49896fd08a9b3ff937 to your computer and use it in GitHub Desktop.
#include <vector>
int main()
{
// initialize a vector of integers. For the purposes of this example let's assume we *need* a vector
std::vector<int> v {1, 2, 3, 4, 5, 6, 1012, 1094};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment