Hi, can I ask you one thing? I have this problem : If I have a .pl file with this prolog code : lunghezza(0,[]). lunghezza(N,[_|L] :- lunghezza(N1,L), N is N1+1. How can i pass by java this query : ?-lunghezza(X,[a,b,c]). and how can i print result on the console java? Thanks for your answering. Best regards.Received on Thu Mar 11 2010 - 22:16:10 CET
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET