shithub: pprolog

ref: ee65a81ee5b0112ba4480619ca672c569fb28b45
dir: /lists.pl/

View raw version
:- module(lists, []).

% List predicates

length([], 0).
length([_|Tail], Length) :-
	length(Tail, Length0),
	Length is Length0 + 1.

append([], Ys, Ys).
append([X|Xs], Ys, [X|Rest]) :-
	append(Xs, Ys, Rest).