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