C++ Primer Plus 学习笔记

先开个坑 后续持续施工~

1
2
3
4
5
6
#include <iostream>

int main(void) {
std::cout << "Hello World!"
return 0;
}