blob: 0b73fafc2539114f73346cb92d7398e855ad46ce [file] [log] [blame]
#include <string>
#include <vector>
#include <iostream>
int main(int argc, char ** argv) {
std::vector<std::string> arr = {"hello world"};
std::cout << arr[0] << std::endl;
}