Skip to content

Instantly share code, notes, and snippets.

@k-payl
Created December 26, 2013 18:04
Show Gist options
  • Save k-payl/8136784 to your computer and use it in GitHub Desktop.
Save k-payl/8136784 to your computer and use it in GitHub Desktop.
symm(List) :- iter(List, []).
iter(L, L):-!.
iter([_|L], L):-!.
iter([H|T], Akk) :- iter(T, [H|Akk]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment