1 // We need to import any std module. It doesn't matter which one.
2 #include <iostream>
3 
main(int argc,char ** argv)4 int main(int argc, char **argv) {
5   std::cout << "Test" << std::endl;
6   return 0; // Set break point at this line.
7 }
8