Method code for $root.build_name()

[Turn off line numbering]
  1: arg @args;
  2: var output, type, part, rval;
  3: 
  4: output = "";
  5: for part in (args) {
  6:     type = type(part);
  7:     if (type == 'list)
  8:         output += (| .(part[1])(@part.subrange(2)) |) || "";
  9:     else if (type == 'string)
 10:         output += part;
 11: }
 12: return output;

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

the Cold Dark