indent -- prints in a more readable way |
Syntax |
indent(L: LIST) indent(I: IDEAL) indent(R: RECORD) indent(X: OBJECT, RecursionDepth: INT) |
Description |
Example |
/**/ L := [[n,n+1] | n in [1,2,3]]; /**/ println L; [[1, 2], [2, 3], [3, 4]] /**/ indent(L); [ [1, 2], [2, 3], [3, 4] ] /**/ indent(record[B := 1, A := 2]); record[ A := 2, B := 1 ] |
See Also |