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

  ret answers;
}