10 lines
159 B
C
10 lines
159 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const char *msg = "Hello!\n";
|
|
write(fileno(stdout), msg, 7);
|
|
return 0;
|
|
}
|