Re-attemp landing of old commit:
7fe3586cda
Co-authored-by: George Hu <georgehuyubo@gmail.com>
9 lines
146 B
C++
9 lines
146 B
C++
#include "foo.h"
|
|
#include <iostream>
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
std::cout << "Hello World!" << std::endl;
|
|
foo();
|
|
return 0;
|
|
}
|