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

How to read the data from txt files? What is the code, or example of the program SWI prolog.

share|improve this question

2 Answers

http://www.swi-prolog.org/Download.html, is a GUI for read SWI prolog files.

share|improve this answer
if i save my data in txt file . data : personal(chong,12), how to write prolog program to read it ?can guide me ? – A.C Sep 7 '11 at 14:57

Prolog has a number of input/output predicates, falling into two categories: the new ISO ones or the old ones compatible with Edinburgh and DEC 10 versions. For full details including example code, see the reference manual:

http://www.swi-prolog.org/pldoc/doc_for?object=section(2,'4.15',swi('/doc/Manual/IO.html'))

share|improve this answer

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.