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

id = 97
name = 'brother/2'
slug = 'the brother relation'

description = '''\
<p><code>brother(X, Y)</code>: <code>X</code> is a brother of <code>Y</code>.</p>
<pre>
  ?- brother(jeffrey, X).
    X = william ;
    X = sally.
</pre>'''

hint = {}