2020-03-31 18:36:58 +01:00
|
|
|
#include <unistd.h>
|
2020-03-31 16:21:07 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2020-03-31 12:55:52 +01:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
|
{
|
2020-03-31 18:36:58 +01:00
|
|
|
const char *msg = "Hello!\n";
|
|
|
|
|
write(fileno(stdout), msg, 7);
|
|
|
|
|
return 0;
|
2020-03-31 12:55:52 +01:00
|
|
|
}
|