- display(+Term) is det
- display(+Stream, +Term) is det
- Write a term, ignoring operators and special syntax constructs such
as brace terms (
{a}
) and lists ([a,b,c]
). Currently does print
dicts using the dict notation.
- See also
- - write_canonical/2. SWI-Prolog's write_canonical/2, however,
prints lists using list notation to reduce incompatibility due to
the modified list functor (
'[|]'
rather than `.`) and reduce
memory usage while parsing lists.