Comment on Soursop and Ponies in Kona: A C++ Committee Trip ReportparentComments−WalterBright3yFor D it looks like: for (thing; things) { ... } which is rewritten as: for (auto r = things; !r.empty; r.popFront) { auto thing = r.front; ... }
Comments
For D it looks like:
which is rewritten as: