Shows how to use xtd::console::set_window_size method.
#include <xtd/console>
auto main()->int {
auto orig_width = 0,
width = 0;
auto orig_height = 0,
height = 0;
auto m1 = "The current window width is {0}, and the current window height is {1}.";
auto m2 = "The new window width is {0}, and the new window height is {1}.";
auto m4 = " (Press any key to continue...)";