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

Shows how to use xtd::string::concat method.

#include <xtd/console>
#include <xtd/string>
using namespace xtd;
auto main() -> int {
console::write_line(string::concat("Hello", ", ", "World", "!"));
}
// This code produces the following output :
//
// Hello, World!
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10