Sha256: e0208f1025aec8bd29617a6c81ca1611098ab76b0736d434405e2ac3889a6b14
Contents?: true
Size: 364 Bytes
Versions: 42
Compression:
Stored size: 364 Bytes
Contents
/* Comments /* can nest */ still a comment */ :- module(maplist, maplist/3) assert(world:done). % asserts sibling(X, Y) :- parent_child(Z, X), parent_child(Z, Y). parent_child(X, Y) :- father_child(X, Y). parent_child(X, Y) :- mother_child(X, Y). mother_child(trude, sally). father_child(tom, sally). father_child(tom, erica). father_child(mike, tom).
Version data entries
42 entries across 42 versions & 5 rubygems