Jan 13, 2009
Relationships, made code
START;
$SELF = ~1;
$PARTNER = ~1;
FIND PARTNER;
IF ( $SELF + $PARTNER < 2 ) {GO TO START} ELSE {END};
START;
$SELF = ~1;
$PARTNER = ~1;
FIND PARTNER;
IF ( $SELF + $PARTNER < 2 ) {GO TO START} ELSE {END};
One Comment, Comment or Ping
i
Note that ~ is notation for ‘approximately’, not a weird representation of ‘minus’.
Basically “keep hunting until you + them = greater than the sum of your parts”
Jan 13th, 2009
Reply to “Relationships, made code”