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

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