summaryrefslogtreecommitdiff
path: root/prolog/problems/family_relations/brother_2/en.py
blob: 4992069e8b7971c9ec08457fa34c62b910b1f6e8 (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 = {}