Shows how to use xtd::using class.
#include <xtd/xtd>
auto main() -> int {
using_(
auto values = {1, 2, 3, 4, 5})
console::write_line(string::join(", ", values));
}
#define using_(...)
The specified expression is cleared automatically when the scope is ended.
Definition using.hpp:33