Hello all. I am pretty new to prolog and understanding it so-so thus far. I have question, which seems simple, but i have not been able to come up with a solution. Its as follows:
Given a list, rotate it to the right. An example query is rotate([1,2,3], R). => R=[3,1,2]; false. There is also...