brintos

brintos / llvm-project-archived public Read only

0
0
Text · 167 B · 50dd77c Raw
9 lines · cpp
1#include "foo.h"2#include <iostream>3 4int main(int argc, char const *argv[]) {5  std::cout << "Hello World!" << std::endl; // main breakpoint 16  foo();7  return 0;8}9