15 lines
334 B
C++
15 lines
334 B
C++
#include <span>
|
|
|
|
static auto entry([[maybe_unused]]std::span<char const*> const& args) -> void {
|
|
}
|
|
|
|
auto main([[maybe_unused]]int argc, [[maybe_unused]]char const* argv[]) -> int {
|
|
try {
|
|
entry({argv, std::next(argv, argc)});
|
|
} catch (std::exception const& e) {
|
|
(void)e;
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|