Sha256: 709f820bfe6c120ffe98600d03afa3aeb67fb2a3555bb731f1d76d624fb6dff7
Contents?: true
Size: 205 Bytes
Versions: 19
Compression:
Stored size: 205 Bytes
Contents
append([], L, L). append([H|T], L2, [H|L3]) :- append(T, L2, L3). ?- appendx([1,2],[3,4],X). X = [1, 2, 3, 4]. ?- appendx([1,2],X,[1,2,3,4]). X = [3, 4]. ?- appendx(X,[3,4],[1,2,3,4]). X = [1, 2].
Version data entries
19 entries across 19 versions & 1 rubygems