Quantcast
Channel: uttumuttu
Viewing all articles
Browse latest Browse all 10

C++ Kana #1 — Usable Logging

$
0
0
Let's exercise RAII and streaming. Write function line() that allows you to write

line() <<"hello world "<< 5 <<"!";

transforming to

std::cout <<"hello world 5!"<< std::endl;

Viewing all articles
Browse latest Browse all 10

Trending Articles