9 lines
179 B
C
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;
|
|
}
|
|
|