brintos

brintos / llvm-project-archived public Read only

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