Method code for $connection.write_strings()

[Turn on line numbering]
arg strings;

if (sender() != interface && sender() != (| class(interface) |))
    throw(~perm, sender() + " cannot write this connection.");
if (type(strings) != 'list)
    throw(~type, "Argument must be a list of strings.");
cwrite($buffer.from_strings(string));

["// Created 21-Aug-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark