Advertisement
Guest User

why doesn't it work

a guest
Sep 30th, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. tieneAncestro: unmamif
  2.     dad isNil & mom isNil
  3.         ifTrue: [ ^ false ]
  4.         ifFalse:[
  5.                 ((unmamif == dad) | (unmamif == mom))
  6.                     ifTrue: [ ^ true ]
  7.                     ifFalse: [
  8.                         mom isNil
  9.                             ifFalse: [ (mom tieneAncestro: unmamif) ifTrue: [ ^ true ]. ].
  10.                         dad isNil
  11.                             ifFalse: [ (dad tieneAncestro: unmamif) ifTrue: [ ^ true ]. ]
  12.                                 ].
  13.                     ].
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement