static S sendToLocalBotQuietly(S bot, S text, O... args) { text = format3(text, args); temp DialogIO channel = newFindBot2(bot); if (channel == null) fail(quote(bot) + " not found"); try { channel.readLine(); channel.sendLine(text); S s = channel.readLine(); return s; } catch (Throwable e) { e.printStackTrace(); return null; } } static S sendToLocalBotQuietly(int port, S text, O... args) { text = format3(text, args); temp DialogIO channel = talkTo(port); try { channel.readLine(); channel.sendLine(text); S s = channel.readLine(); return s; } catch (Throwable e) { e.printStackTrace(); return null; } }