8 lines
94 B
C++
8 lines
94 B
C++
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
printf("Hello, world!\n");
|
|
return 0;
|
|
}
|