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

name = 'mother/2'
slug = 'the mother-child relation'

description = '''\
<p><code>mother(M, C)</code>: <code>M</code> is the mother of <code>C</code>.</p>
<pre>
?- mother(tina, william).
  true.
?- mother(nevia, X).
  X = luana ;
  X = daniela.
</pre>'''

hint = {}