6 lines
88 B
C
6 lines
88 B
C
|
# include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("Hello world\n");
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|