PrevUpHomeNext

kcpp::kout


kcpp::kout

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

#include <kcpp/io.hpp>

c++ example

#include <kcpp/io.hpp>

int main()
{
	kcpp::kout << "Hello, " << true << ' ' << 23 << kcpp::endl;
	// Hello, true 23
}

Back

Back: Kcpp IO

See Also

kcpp::print

kcpp::endl

kcpp::dice









________________________________________


PrevUpHomeNext

P   R   D