mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-11 22:52:11 +02:00
10 lines
81 B
C++
10 lines
81 B
C++
|
|
#include <cstdio>
|
|
|
|
int main() {
|
|
printf("Hello world!\n");
|
|
|
|
return 0;
|
|
}
|
|
|