StandardLispCons c = (StandardLispCons) value;
XLList coll = new XLList();
for (int i = 0; i < c.basic_length(); i++) {
coll.add(makeResult(c.elt(i)));
}
return coll.toXLoper();
} else if (value instanceof StandardLispNIL || value == null) {
return XLNil.NIL;
} else {
return new XLString(registry.put(value));
}