blob: 50dd77c0a9c1db7a7de9e7c3d2f22f0d4e415288 [file] [log] [blame]
#include "foo.h"
#include <iostream>
int main(int argc, char const *argv[]) {
std::cout << "Hello World!" << std::endl; // main breakpoint 1
foo();
return 0;
}