reliant/hello/hello.c
2026-01-05 20:38:29 -08:00

9 lines
194 B
C

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