"Brad Roberts" <[email protected]> wrote in message news:[email protected]...
Without looking at the docs, code, or compiling and running a test, what will
this 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?

Reply via email to