projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
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).