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