/ test_src / cpp / hello_world / 006 / hello.cpp
hello.cpp
1  #include <cstdio>
2  
3  int main() {
4      puts("Hello, World!");
5      return 0;
6  }