PrevUpHomeNext

kcpp::print


kcpp::print

kcpp::print is a c++ class object of kcpp to print multiple values.

kcpp is designed from scratch again, with zero c library dependency.

Kcpp is cross-platform, header-only, no build requirement, and no build system requirement.

kcpp::print is re-designed.

kcpp::print("Hello, c++!", 'a', true, "c++", "world.");

Expected output:

Hello, c++! a true c++ world.

include

#include <kcpp/io.hpp>

c++ example

#include <kcpp/io.hpp>

int main()
{
	kcpp::print("Hello", "c++!", false, true, 25.4);
/*
Hello c++! false true 25.4
*/
}

Back

Back: Kcpp IO

See Also

kcpp::roll

kcpp::kerr

kcpp::klog









________________________________________


PrevUpHomeNext

P   R   D