A little… extension for C++
Loops are used on a daily base by almost every programmer. Especially for-loops occur quite often. Now, have you ever felt it’s quite cumbersome to code something like the following: for (int i=0; i<10; ++i){ do_something_here(); } while you just wanted to write 10 times { do_something_here(); } and wanted C++ to understand it? Don’t [...]