Skip to content

Instantly share code, notes, and snippets.

@trietptm
Created December 13, 2012 16:25
Show Gist options
  • Save trietptm/4277626 to your computer and use it in GitHub Desktop.
Save trietptm/4277626 to your computer and use it in GitHub Desktop.
Duplicate the elements of a list.
dupli([], []).
dupli([X], [X, X]).
dupli([H|T], [H, H|L]) :- dupli(T, L), !.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment