kcpp::kout is the c++ output stream object of the kcpp output stream class to the standard character console.
kcpp::kout is similar to std::cout.
The console might be a virtual device that can be anything which can print messages.
#include <kcpp/io.hpp>
#include <kcpp/io.hpp> int main() { kcpp::kout << "Hello, " << true << ' ' << 23 << kcpp::endl; // Hello, true 23 }
Back: Kcpp IO
________________________________________