projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount]
/
test
/
detect_files
/
foo_prolog1.pl
1
2
% select(Element, List, Remaining)
3
4
select(H, [H| T], T).
5
select(H, [X| R], [X| T]) :-
6
select(H, R, T).