# coding=utf-8 name = 'sister/2' slug = 'the sister relation' description = '''\
sister(?X, ?Y)
: X
is a sister of Y
.
?- sister(vanessa, X). X = patricia.''' hint = { 'x_y_must_be_different': '''\
What if X
and Y
are the same person? Try the
following query:
?- sister(sally, Y).''', }