I want to develop the following exercise in Prolog .
I have a list
Lista = [a,b,c,d,f,g,h,i]
and I want to split it in two when I find for example the character ' d ' so the result would be the same:
L1 = [a,b,c]
L2 = [f,g,h,i]
I a...
asked by
07.10.2017 / 16:13