mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 00:01:16 +00:00
9 lines
120 B
C++
9 lines
120 B
C++
#include <iostream>
|
|
|
|
void app();
|
|
|
|
int main() {
|
|
std::cout << "Hello World from the platform\n";
|
|
app();
|
|
return 0;
|
|
}
|