reliant/hello/hello.c

9 lines
193 B
C

#include <string.h>
#include <unistd.h>
int main(int argc, const char **argv) {
static const char message[] = "Hello, world!\n";
write(STDIN_FILENO, message, strlen(message));
return 0;
}