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