Let's exercise RAII and streaming. Write function
transforming to
line()
that allows you to writeline() <<"hello world "<< 5 <<"!";
transforming to
std::cout <<"hello world 5!"<< std::endl;