From Lane Schwartz
#include <vector>
using std::vector;
int main() {
auto my_data = vector<int>{17, 25, -300, 14};
return 0;
}