wip
This commit is contained in:
parent
71ce1fc17f
commit
fb8121c8e4
1 changed files with 4 additions and 2 deletions
|
|
@ -1,7 +1,9 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(int argc, const char **argv) {
|
||||
puts("Hello, world!\n");
|
||||
const message = "Hello, world!\n";
|
||||
write(STDIN_FILENO, message, strlen(message));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue