mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
9 lines
123 B
C
Vendored
9 lines
123 B
C
Vendored
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
char msg[] = "Hello!\n";
|
|
write(STDOUT_FILENO, msg, strlen(msg));
|
|
}
|