Created
December 13, 2012 16:25
-
-
Save trietptm/4277626 to your computer and use it in GitHub Desktop.
Duplicate the elements of a list.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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