in reply to spawning children in Win32 environment
If you want to spawn and run, you could backtick a `start whatever` or do a system("start whatever"),
although using Win32::Process more effectively is probably cooler. :) I've used named pipes
for communication, so you might give that a shot.
-Vlad