first commit
This commit is contained in:
commit
81b8814143
18
README.md
Normal file
18
README.md
Normal file
@ -0,0 +1,18 @@
|
||||
# 介绍
|
||||
C++ "Hello World!"项目的模板。
|
||||
# 开始
|
||||
- 单击 **运行** 按钮启动程序。
|
||||

|
||||
|
||||
- 转到 TERMINAL 面板查看输出。
|
||||

|
||||
|
||||
默认情况下,MarsCode默认运行 **CMakeList** 和 **. vscode/launch.json** 配置文件,你可以修改这些文件进行自定义配置。参考 [Visual Studio Code的文档](https://code.visualstudio.com/docs/editor/debugging) 有关如何配置launch. json。
|
||||
# 了解更多
|
||||
- [isocpp](https://isocpp.org/) -所有编译器和平台上关于C++标准的新闻、状态和讨论
|
||||
- [c++参考](https://en.cppreference.com/) -了解C++功能
|
||||
- [makefile](https://makefiletutorial.com/) -makefile教程
|
||||
- [cmake](https://cmake.org/cmake/help/latest/guide/tutorial/) -cmake教程
|
||||
# 帮助
|
||||
如果你需要帮助,你可以查看[文档](https://docs.marscode.cn/),或向我们提供[反馈](https://juejin.cn/pin/club/7359094304150650889?utm_source=doc&utm_medium=marscode)。
|
||||
|
6
main.cpp
Normal file
6
main.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello World!\n";
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user