Re: To develop a system fit for Web-heroes.
Alan Baljeu <[email protected]>
| Newsgroups | gmane.comp.ai.prolog.swi |
|---|---|
| Message-ID | <[email protected]> |
Ulrich: >A very benign step in that direction was phrase_to_file/2. It was >lost somewhere in the git, though. Maybe you want to pursue it? Isn't that just: phrase_to_file(Phrase, File) :- phrase(Phrase, List), !, write_list_to_file(File, List). >Regrettably, library(pio) in SWI is for codes only, and never for >chars, so my interest faded away. Surely it's trivial to convert pio to use chars?