summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/aunt_2/en.py
blob: 95780a11f68a2c8293e40a4f4352acfbe1dae55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
id = 98
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 = {}