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

Shows how to use xtd::console::beep method.

#include <xtd/xtd>
auto main(int argc, char* argv[]) -> int {
int x = 0;
//
if ((argc == 2) && (int32_object::try_parse(argv[1], x) == true) && ((x >= 1) && (x <= 9))) {
for (auto i = 1; i <= x; i++) {
console::out << string::format("Beep number {}.", i) << beep() << environment::new_line;
threading::thread::sleep(100_ms);
}
} else
console::out << "Usage: Enter the number of times (between 1 and 9) to beep." << environment::new_line;
}