#include #include #include #include #include #include main: () -> int = { vec: std::vector = ("hello", "2023"); y: std::string = "\n"; std::ranges::for_each( vec, :(x) = std::cout << y&$*.c_str() << x << y&$* ); callback := :(inout x) = x += "-ish"; std::ranges::for_each( vec, callback ); for vec do (str) std::cout << str << "\n"; }