Example 01: Website Sandbox
concat([], X, X). concat([X|Y], Z, [X|T]) :- concat(Y, Z, T). ?- concat([1], [2,3], X).
⏵