Fixes recursion bug in disambiguate_in().
[ohcount] / test / src_dir / prolog.pl
1 /* test file for Prolog parsing */
2
3 % this is a Prolog source file
4
5 % select(Element, List, Remaining)
6
7 select(H, [H| T], T).
8 select(H, [X| R], [X| T]) :-
9         select(H, R, T).