xtd 0.2.0
hello_world_console.cpp

The classic first application "Hello, World!" with xtd::console class.

#include <xtd/console>
using namespace xtd;
auto main()->int {
console::write_line("Hello, World!");
}
// This code produces the following output with colors :
//
// Hello, World!