1 prolog comment /* test file for Prolog parsing */
3 prolog comment % this is a Prolog source file
5 prolog comment % select(Element, List, Remaining)
7 prolog code select(H, [H| T], T).
8 prolog code select(H, [X| R], [X| T]) :-
9 prolog code select(H, R, T).