summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/aunt_2/en.py
blob: 8d20d7e91317510d8c65f6d79e4d534c606b354f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding=utf-8

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 = {}