Hi all,
I have a program (given bellow) but when I invoke the prolog shell I get this message:
{ERROR: segmentation violation}
The program is:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% :- module(test, [main/1], []).
:- include(library(pillow)). :- use_module(library(dec10_io)).
main(_):- tell('test.txt'), url_info('http://143.107.183.175/site2001/publications.htm', URLInfo), fetch_url(URLInfo,[],Response), member(content(Content),Response), html2terms(Content,Terms), display(Terms), told. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%
I'm using ciao-1.7p212Win32 on Windows NT.
Any help is appreciated!
Alex