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-04-01 11:58:54 +01:00
|
|
|
fputs("Hello, world!\n", stdout);
|
2020-03-31 18:36:58 +01:00
|
|
|
return 0;
|
2020-03-31 12:55:52 +01:00
|
|
|
}
|