9 lines
167 B
C++
9 lines
167 B
C++
|
#include "foo.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char const *argv[]) {
|
||
|
std::cout << "Hello World!" << std::endl; // main breakpoint 1
|
||
|
foo();
|
||
|
return 0;
|
||
|
}
|