1 2 3 4 5 6 7 8 9 10 11 12 13 14
# coding=utf-8 name = 'brother/2' slug = 'the brother relation' description = '''\ <p><code>brother(?X, ?Y)</code>: <code>X</code> is a brother of <code>Y</code>.</p> <pre> ?- brother(jeffrey, X). X = william ; X = sally. </pre>''' hint = {}