Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <vector>
int main() {
std::vector<std::string> words = {"Hello", "World"};
for (const auto& w : words) {
std::cout << w << std::endl;
}
return 0;
}Coding works best on desktop or with an external keyboard.