xtd 0.2.0
Loading...
Searching...
No Matches
hello_world_environment2.cpp

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

#include <xtd/console>
#include <xtd/environment>
using namespace xtd;
auto main() -> int {
console::out << "Hello, " << environment::user_name() << "!" << environment::new_line;
}
// This code can produce the following output :
//
// Hello, gammasoft71!
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10