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-03 19:21:22 +01:00
|
|
|
printf("Hello, world!\n");
|
2020-03-31 18:36:58 +01:00
|
|
|
return 0;
|
2020-03-31 12:55:52 +01:00
|
|
|
}
|