I have a question and I hope to help me:

what does" readin" predicate in prolog do?

I have searched in google but I have nothing

could you explain it to me with an example?

Regards.

link|improve this question

0% accept rate
1  
what implementation of prolog are you using? I cannot find anything either. are you sure that it's a build-in predicate and not something defined in the code? do you have any code that uses it? – thanosQR Nov 4 '11 at 21:54
thank you for answer but I have nothing about it also I have not code.I use SWI. yes I am sure it is built-in predicate. – smile Nov 5 '11 at 1:38
feedback

1 Answer

I think you must be seeing readln not readin. The library predicate readln/1 reads tokens from an input line in the interactive SWI-Prolog console and makes a list of them. Most Prolog term reading predicates require a period to terminate input, but this predicate would include any terminating period in the list.

See here for a bit of documenation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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