kcpp::endl is an executor which outputs a newline character and flush the output stream.
kcpp::endl is similar to std::endl.
#include <kcpp/io.hpp>
#include <kcpp/io.hpp> int main() { kcpp::kout << 23 << kcpp::endl << 45 << kcpp::endl; /* 23 45 */ }
Back: Kcpp IO
________________________________________