Use open/3 and stream input / output reference:
open(file, append, S), write(S, info(X,Y)), put_char(S,.), nl(S), close(S).
Using tell/1 and told extremely unreliable. It easily happens that the output is written to another file randomly.
Edit: Here is an example illustrating the highly unreliable properties of tell/1 and told .
Let's say you write tell(file), X > 3, write(biggervalue), told. This works fine until X > 3 . But with a lower value, this request fails and nothing is written. Perhaps this was your intention. However, the next output somewhere else in your program will now go to file . This is something you will never want. For this reason, ISO-Prolog does not have tell/1 and told , but rather open/3 and close/1 .
false source share