| indent |
| Syntax |
indent(X: OBJECT) indent(X: OBJECT, N: INT) |
| Description |
| Example |
/**/ L := [1,2] >< [3,4];
/**/ L;
[[1, 3], [1, 4], [2, 3], [2, 4]]
/**/ indent(L);
[
[1, 3],
[1, 4],
[2, 3],
[2, 4]
]
/**/ indent(L,2);
[
[
1,
3
],
--( Further output )--
[
2,
4
]
]
/**/ indent(record[B:=1,A:=2]);
record[
A := 2,
B := 1
]
|
| See Also |