reliant/hello/hello.c
2026-01-05 20:31:15 -08:00

9 lines
179 B
C

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