♻️ 使用module重构所有代码

This commit is contained in:
csh
2025-12-07 23:07:03 +08:00
parent 549f1d1b0a
commit f7d5a74615
369 changed files with 2272844 additions and 2202476 deletions
+17
View File
@@ -0,0 +1,17 @@
module;
export module lsp.test.module_demo.main;
import std;
import math;
import math2;
int main()
{
std::cout << "hello std module\n";
std::vector<int> v{ 1, 2, 3 };
math::print_sum(1, 2);
math2::print_sum(2, 3);
return 0;
}