INTERFACE IntListUtils; IMPORT IntList; PROCEDURE ToText(l: IntList.T): TEXT;
Return the list l represented as a text of the form [l1, l2, ..., ln], where the l_i are the elements of l.
l
[l1, l2, ..., ln]
l_i
END IntListUtils.