roc/linker/tests/platform.cc
2021-08-19 23:00:10 -07:00

9 lines
120 B
C++

#include <iostream>
void app();
int main() {
std::cout << "Hello World from the platform\n";
app();
return 0;
}