static L sendToAllOtherVMs(S line, O... args) { new L answers; line = format3(line, args); for (DialogIO io : talkToAllOtherVMs()) try { print(": " + dropAfterLastSlash(io.readLine())); answers.add(io.askLoudly(line)); } finally { io.close(); } ret answers; }