#include #include int main() { std::string s = "hello"; std::string_view sv = s + " world!"; std::cout << sv << std::endl; }