xtd
0.2.0
concat.cpp
Shows how to use
xtd::ustring::concat
method.
#include <xtd/console>
#include <xtd/ustring>
using namespace
xtd
;
auto
main()->int {
console::write_line
(
ustring::concat
(
"Hello"
,
", "
,
"World"
,
"!"
));
}
// This code produces the following output:
//
// Hello, World!
Generated on Mon Oct 9 2023 14:41:55 for xtd by
Gammasoft
. All rights reserved.