Shows how to use __ keyword.
#include <xtd/xtd>
struct foo {
foo() {println("foo constructor");}
};
auto main() -> int {
[[maybe_unused]] auto __ = 42;
[[maybe_unused]] auto __ = "value string";
auto __ = diagnostics::stopwatch::start_new();
auto __ = date_time::now();
auto __ = foo {};
auto [i1, __, chrono1, __,
f1] = std::make_tuple(42,
"value string", diagnostics::stopwatch::start_new(), date_time::now(), foo {});
}
@ f1
The F1 key.
Definition console_key.hpp:180