Show how to use format xtd::format class with null pointers.
#include <xtd/ustring>
using namespace std;
auto main()->int {
cout << ustring::format("{}", nullptr) << endl;
cout << ustring::format(
"{}",
null) << endl;
cout << ustring::format("{}", NULL) << endl;
cout << ustring::format("{}", 0) << endl;
}