wasmer/emtests/test_write_stdout_fileno.c
2018-12-27 01:46:41 -06:00

9 lines
123 B
C

#include <unistd.h>
#include <string.h>
int main()
{
char msg[] = "Hello!\n";
write(STDOUT_FILENO, msg, strlen(msg));
}