I am having a real issue with the stepper. Maybe the programs are too simple so far for the stepper, but it doesn't step.<br><br>The check syntax feature is great. for the check-color game should the stepper work? What is the trick? I just wanted to check the flow by stepping through.<br>
Each time I use it I get "Couldn't find a step matching that criterion"<br>No matter what I change select or do.<br><br>;check-color<br>;colour guessing game (target target)(guess guess)<br>;symbol symbol symbol symbol -> string<br>
;four color symbols<br>(define (check-color target1 target2 guess1 guess2)<br> (cond<br> [(eq? target1 guess1) 'Perfect]<br> [(or (eq? target1 guess1)(eq? target2 guess2)) 'OneColorAtCorrectPosition]<br> [(or (eq? target1 guess2)(eq? target2 guess1)) 'OneColorOccurs]<br>
[else 'NothingCorrect]))<br><br>;(check-color 'red 'green 'green 'red)<br>;'OneColorOccurs<br><br>Sayth<br>