xtd 0.2.0
using.cpp

Shows how to use xtd::using class.

#include <xtd/console>
#include <xtd/using>
using namespace xtd;
auto main()->int {
using_(auto values = {1, 2, 3, 4, 5})
// uncomment next line cause build error with undeclared identifier 'values'.
// cout << ustring::join(", ", values) << endl;
}
// This code produces the following output:
//
// 1, 2, 3, 4, 5