Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/cmake/threads/hello.c
6171 views
1
#include <stdio.h>
2
3
int main() {
4
printf("hello, world!\n");
5
return 0;
6
}
7
8