What I want to do is a translator in Prolog. I've done something like this to translate one word:

traducir(X,Y) :- traduccion( X, Y ).
traduccion(gato,cat).

And when you ask Prolog traducir(X,cat) , it answers X=gato What I want to do is a translator where you ask something like traducir(X,[Hola,mi,nombre,es,Juan]). and Prolog's answer should be X=[Hello,my,name,is,John].

link|improve this question

possible duplicate of Prolog: converting atom to new atom – Kaarel Dec 1 '11 at 9:53
see also: stackoverflow.com/questions/7542406 – Kaarel Dec 1 '11 at 9:54
feedback

2 Answers

up vote 3 down vote accepted

Here is another one :

traducir(Xs, Ys) :- maplist(traduccion, Xs, Ys).
link|improve this answer
2  
The cut is a red one. And you can remove length/2 and ! from the program. The maplist/3 goal is all that is needed. – false Nov 30 '11 at 21:15
You sir are as usual totally right :) I do not know why I inserted those lengths predicate when taking another look at it. Anyway, corrected! Thanks for pointing that out. – Mog Nov 30 '11 at 22:21
Fine! Now I can +1 it! – false Nov 30 '11 at 22:23
feedback
traducir([],[]).
traducir([Hin|Tin], [Hout|Tout]) :-
    traduccion(Hin, Hout),
    traducir(Tin,Tout).
link|improve this answer
I think you meant traducir([Hin|Tin], [Hout|Tout]) :- traduccion(Hin, Hout), traducir(Tin,Tout). in your second clause – gusbro Nov 30 '11 at 17:13
@gusbro You are right! – dasblinkenlight Nov 30 '11 at 17:17
@Mog thanks for correcting the code. – dasblinkenlight Nov 30 '11 at 17:17
could you please post an example about how to try this? – arfarinha Nov 30 '11 at 17:38
1  
or Juan needs to become 'Juan' btw. – Mog Nov 30 '11 at 18:46
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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