Blame | Last modification | View Log | RSS feed
nextto(X,Y,[X,Y|_]). nextto(X,Y,[_|Tail]) :- nextto(X,Y,Tail).
nextto(X,Y,[X,Y|_]).
nextto(X,Y,[_|Tail]) :- nextto(X,Y,Tail).