I am having a real issue with the stepper. Maybe the programs are too simple so far for the stepper, but it doesn&#39;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 &quot;Couldn&#39;t find a step matching that criterion&quot;<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 -&gt; string<br>
;four color symbols<br>(define (check-color target1 target2 guess1 guess2)<br>  (cond<br>    [(eq? target1 guess1) &#39;Perfect]<br>    [(or (eq? target1 guess1)(eq? target2 guess2)) &#39;OneColorAtCorrectPosition]<br>    [(or (eq? target1 guess2)(eq? target2 guess1)) &#39;OneColorOccurs]<br>
    [else &#39;NothingCorrect]))<br><br>;(check-color &#39;red &#39;green &#39;green &#39;red)<br>;&#39;OneColorOccurs<br><br>Sayth<br>