Targeting C

bearophile bearophileHUGS at lycos.com
Thu Oct 22 03:57:40 PDT 2009


Pelle Månsson:

> Personally, I like this:
> foreach (i; 0..10) list ~= i;
> more. :)

While I like this more:
for (i in 0 .. 10)
    list ~= i;

Bye,
bearophile



More information about the Digitalmars-d mailing list