Shows how to use xtd::environment::exit_code method.
#include <xtd/xtd>
namespace environment_exit_code_example {
class program {
public:
static auto main() {
auto args = environment::get_command_line_args();
auto value = 0;
if (args.length() == 1) environment::exit_code(ECANCELED);
else if (!try_parse(args[1], value)) environment::exit_code(EINVAL);
else if (value <= int32_object::min_value || value >= int32_object::max_value) environment::exit_code(ERANGE);
else console::write_line("Result: {0}", value * 2);
}
};
}
startup_(environment_exit_code_example::program::main);
#define startup_(...)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.hpp:278