Files
tsl-devkit/lsp-server/test/test_module/main.cppm
T
csh e5782c76fa ♻️ refactor(lsp_server): move entrypoints out of named modules
- export Run() from launcher module and add non-module main TU
- apply same pattern to module-based test executables
- migrate utils/string implementation fully into string.cppm and drop string.cpp
- point clangd to linux build compilation database
2025-12-13 19:55:45 +08:00

18 lines
256 B
C++

module;
export module lsp.test.module_demo.main;
import std;
import math;
import math2;
export int Run()
{
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;
}