Shows how to use xtd::startup class.
#include <xtd/console>
#include <xtd/startup>
namespace main_example {
class program {
public:
auto number = 0;
if (args.
size() != 1 || try_parse(args[0], number) ==
false || number < 0 || number > 20) {
console::write_line("Please enter an integer argument betwween 0 and 20.");
console::write_line("Usage: factorial <integer>");
return -1;
}
console::write_line("The factorial of {} is {}", number, [&] {
auto result = 1l;
for (auto i = 1; i <= number; ++i)
result *= i;
return result;
}());
return 0;
}
};
}
Provides methods for creating, manipulating, searching, and sorting arrays, thereby serving as the ba...
Definition array.hpp:59
virtual size_type size() const noexcept
Returns the number of elements in the container, i.e. std::distance(xtd::array::begin(),...
Definition basic_array.hpp:229
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.hpp:175
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10