signals EOF (End of File) on the far end by shutting down output for $handle
$handle - the handle to close writes to.
$handle = fork( { # do some long drawn out calculation. $x = 3 * 4; printEOF($source); println("..."); }); println("Letting fork do its thing."); readb($handle); println("Done.");
... Letting fork do its thing. Done.