10 строки
120 B
C++
10 строки
120 B
C++
|
#include<stdio.h>
|
||
|
|
||
|
class Test {}; // This will fail in C mode
|
||
|
|
||
|
int main() {
|
||
|
printf("hello, world!\n");
|
||
|
return 1;
|
||
|
}
|
||
|
|