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

Shows how to use xtd::startup class.

#include <xtd/console>
#include <xtd/environment>
using namespace xtd;
auto main() -> int {
// Write arguments to the console output
for (auto arg : environment::get_command_line_args())
console::write_line(arg);
return 42;
}
// This code produces the following output if one two "three four" five are entered on command line:
//
// /!---OMITTED---!/main5
// one
// two
// three four
// five
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10