"Brad Roberts" <[email protected]> wrote in message news:[email protected]...
Without looking at the docs, code, or compiling and running a test, what willthis do:foreach(x, splitter(",a,b,", ",")) writefln("x = %s", a);
Is it a trick question?Replacing , with ; and a with x: there are 3 comma's, so I'd expect 4 outputs:
x = x = a x = b x =
ie. choice 4?
