Files
wasm-overhead-research/runtimes/test-modules/wasi_hello.c
2025-08-19 14:38:11 +01:00

12 lines
195 B
C

#include <stdio.h>
int main() {
printf("Hello from WASI!\n");
return 0;
}
__attribute__((export_name("hello")))
int hello() {
printf("Hello from WASI function!\n");
return 42;
}