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