summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/aunt_2/en.py
blob: 7e508bc61ee932103e08214b4354bc01acfcf063 (plain)
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 = {}