#include <xtd/console>
#include <xtd/date_time>
#include <xtd/startup>
 
 
class program {
public:
  static auto main() {
    auto local_date = date_time::now();
    auto utc_date = date_time::utc_now();
    auto locale_names = 
list {
"en_US", 
"en_GB", 
"fr_FR", 
"de_DE", 
"ru_RU"};
 
    
    for (auto locale_name : locale_names) {
      try {
        std::locale::global(std::locale {locale_name + ".utf-8"_s});
        console::write_line("{}:", locale_name);
        console::write_line("   Local date and time: {}, {}", local_date.to_string(), local_date.kind());
        console::write_line("   UTC date and time: {}, {}\n", utc_date.to_string(), utc_date.kind());
      } catch (const std::exception& e) {
        console::write_line(string::format("Make sure {} locale is installed on your system :\n\n{}\n", locale_name, e.what()), "Exception");
      }
    }
  }
};
 
 
Represents a strongly typed list of objects that can be accessed by index. Provides methods to search...
Definition list.hpp:71
 
#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::collections::generic namespace contains interfaces and classes that define generic collectio...
Definition comparer.hpp:15
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10