Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

swi-prolog uses list of list of list of ... to represent XML tree. I tried

write(Term)

it doesn't indent good, and

format(Term)

it doesn't support list, and

pretty_print

it seems it is not for list,and it is defined in rb tree library.

share|improve this question

1 Answer

up vote 4 down vote accepted
xml_write(+Stream, +Term, +Options)

Usage example:

?- load_xml_file('example.xml', Term), xml_write(user, Term, []).
share|improve this answer
that's what I am looking for, thanks – YourBestBet Mar 30 '11 at 19:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.