2024-11-04 20:28:54 -08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
2023-07-01 11:58:00 -04:00
|
|
|
|
2024-11-04 20:28:54 -08:00
|
|
|
int main(void)
|
2023-07-01 11:58:00 -04:00
|
|
|
{
|
2024-11-04 20:28:54 -08:00
|
|
|
printf("Hello world!\n");
|
|
|
|
|
return EXIT_SUCCESS;
|
2023-07-01 11:58:00 -04:00
|
|
|
}
|