<add>加入注释

This commit is contained in:
dong 2024-11-30 00:16:35 +08:00
parent 4104dd7573
commit 31559a0843
1 changed files with 9 additions and 0 deletions

View File

@ -1,6 +1,15 @@
#include <iostream>
void test() {
std::cout << "test" << "\n";
std::cout << "log ..." << "\n";
}
int main() {
std::cout << "hello world" << "\n";
test();
test();
// 第三次
test();
return 0;
}