<br><br><div class="gmail_quote">On Mon, Jan 10, 2011 at 9:16 AM, Justin Zamora <span dir="ltr">&lt;<a href="mailto:justin@zamora.com">justin@zamora.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
The stepper works fine on simple programs.  You can try watching this<br>
video tutorial I made for my students.  It&#39;s basic, but it covers the<br>
essentials of using the stepper.<br>
<a href="http://www.youtube.com/watch?v=j3X07a-7YRM" target="_blank">http://www.youtube.com/watch?v=j3X07a-7YRM</a><br>
<br>
Justin<br>
<div><div></div><div class="h5"><br>
On Sun, Jan 9, 2011 at 9:02 AM, Sayth Renshaw &lt;<a href="mailto:flebber.crue@gmail.com">flebber.crue@gmail.com</a>&gt; wrote:<br>
&gt; I am having a real issue with the stepper. Maybe the programs are too simple<br>
&gt; so far for the stepper, but it doesn&#39;t step.<br>
&gt;<br>
&gt; The check syntax feature is great. for the check-color game should the<br>
&gt; stepper work? What is the trick? I just wanted to check the flow by stepping<br>
&gt; through.<br>
&gt; Each time I use it I get &quot;Couldn&#39;t find a step matching that criterion&quot;<br>
&gt; No matter what I change select or do.<br>
&gt;<br>
&gt; ;check-color<br>
&gt; ;colour guessing game (target target)(guess guess)<br>
&gt; ;symbol symbol symbol symbol -&gt; string<br>
&gt; ;four color symbols<br>
&gt; (define (check-color target1 target2 guess1 guess2)<br>
&gt;   (cond<br>
&gt;     [(eq? target1 guess1) &#39;Perfect]<br>
&gt;     [(or (eq? target1 guess1)(eq? target2 guess2))<br>
&gt; &#39;OneColorAtCorrectPosition]<br>
&gt;     [(or (eq? target1 guess2)(eq? target2 guess1)) &#39;OneColorOccurs]<br>
&gt;     [else &#39;NothingCorrect]))<br>
&gt;<br>
&gt; ;(check-color &#39;red &#39;green &#39;green &#39;red)<br>
&gt; ;&#39;OneColorOccurs<br>
&gt;<br>
&gt; Sayth<br>
&gt;<br>
</div></div>&gt; _________________________________________________<br>
&gt;  For list-related administrative tasks:<br>
&gt;  <a href="http://lists.racket-lang.org/listinfo/users" target="_blank">http://lists.racket-lang.org/listinfo/users</a><br>
&gt;<br>
</blockquote></div><br>Thanks heaps. Very handy<br>