What is &#39;p&#39; in this example?<br><br>On Wednesday, October 17, 2012, Sam Tobin-Hochstadt  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Tue, Oct 16, 2012 at 7:55 PM, Stephen Bloch &lt;<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;bloch@adelphi.edu&#39;)">bloch@adelphi.edu</a>&gt; wrote:<br>

&gt;&gt;&gt; Another data point: If &quot;define/match&quot; expands to a &quot;define&quot; of a procedure<br>
&gt;&gt;&gt; that dispatches to a set of implementations based on a pattern-match of<br>
&gt;&gt;&gt; actual arguments... then the name is exactly what I&#39;d expect for such a<br>
&gt;&gt;&gt; feature in a Scheme dialect.<br>
&gt;&gt;<br>
&gt;&gt; That is, in fact, exactly what it does.<br>
&gt;<br>
&gt; Cool!  My students have been writing code that way for years, and I&#39;ve been telling them &quot;There are languages in which that would work, but Scheme isn&#39;t one of them.&quot;<br>
&gt;<br>
&gt; (define (swap (make-posn x y))<br>
&gt;     (make-posn y x))<br>
<br>
The syntax looks like:<br>
<br>
  (define/match (swap p)<br>
     [(posn x y) (posn y x)])<br>
<br>
--<br>
sam th<br>
<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;samth@ccs.neu.edu&#39;)">samth@ccs.neu.edu</a><br>
_________________________<br>
  Racket Developers list:<br>
  <a href="http://lists.racket-lang.org/dev" target="_blank">http://lists.racket-lang.org/dev</a><br>
</blockquote>