<?xml version="1.0" encoding="ISO-8859-1"?>
<rdf:RDF
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns="http://purl.org/rss/1.0/"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:syn="http://purl.org/rss/1.0/modules/syndication/"
>

<channel rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/">
<title>talkaboutprogramming.com Scheme</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/</link>
<description>$</description>
<dc:language>en-us</dc:language>
<dc:rights>Copyright 2003-2005, Talk About Network. All Rights Reserved.</dc:rights>
<dc:date>2008-07-25T18:07:44+00:00</dc:date>
<dc:publisher>TAN</dc:publisher>
<dc:creator>rss@talkaboutnetwork.com</dc:creator>
<dc:subject>Discussion</dc:subject>
<syn:updatePeriod>hourly</syn:updatePeriod>
<syn:updateFrequency>1</syn:updateFrequency>
<syn:updateBase>1970-01-01T00:00+00:00</syn:updateBase>
<items>
 <rdf:Seq>
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82486.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82481.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82480.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82466.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82456.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82435.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82411.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82407.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82402.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82393.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82383.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82382.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82380.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82365.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82360.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82359.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82355.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82353.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82348.html" />
<rdf:li rdf:resource="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82344.html" />
 </rdf:Seq>
</items>
<image rdf:resource="http://tan12.talkaboutnetwork.com/images/spacer.gif" /> 
<textinput rdf:resource="http://talkaboutprogramming.com/group/comp.lang.scheme/search.html" />
</channel>

<image rdf:about="http://tan12.talkaboutnetwork.com/images/spacer.gif">
<title>talkaboutprogramming.com Scheme</title>
<url>http://tan12.talkaboutnetwork.com/images/spacer.gif</url>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/</link>
</image>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82486.html">
<title>SRFI 99: ERR5RS Records</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82486.html</link>
<description>This announces the availability for discussion of  Scheme Request for Implementation 99  ERR5RS Records  by William D Clinger.  Its draft and an archive of the ongoing discussion is available at  http://srfi.schemers.org/srfi-99/  You can join the di...</description>
<dc:creator>David Van Horn ltdvanhorn@[EMAIL PROTECT...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-25T09:01:09+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82481.html">
<title>Commercial Users of Functional Programming Workshop Call for</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82481.html</link>
<description>Commercial Users of Functional Programming Workshop (CUFP) 2008                   Functional Programming As a Means, Not an End                              Call for Participation                               Sponsored by SIGPLAN                    ...</description>
<dc:creator>Jim Grundy ltjim.grundy@[EMAIL PROTECTED...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-22T21:31:13+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82480.html">
<title>parentheses in cond</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82480.html</link>
<description>when i write a program to compute the Fibonacci numbers, i first wrote like this: (define (fab n)          (fab-iter 0 1 n))  (define (fab-iter a b n)          (cond ((= 1 n) a)                (fab-iter b (+ a b) (- n 1))))  but soon found it was wro...</description>
<dc:creator>bob ltbobdyln@[EMAIL PROTECTED]
gt
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-24T20:08:46+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82466.html">
<title>Wraith Scheme 1.33 released (for Macintosh) does parallel proce</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82466.html</link>
<description>Today I released version 1.33 of Wraith Scheme, which is a full R5 Scheme implementation for the Apple Macintosh, with enhancements for parallel processing, by which I mean multiple copies of the Wraith Scheme application (separate Unix processes) al...</description>
<dc:creator>Jay Reynolds Freeman ltJay_Reynolds_Free...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-23T19:37:35+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82456.html">
<title>Sort a list of dotted pairs</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82456.html</link>
<description>Dear group,  I have a list of dotted pairs that may look something like this: ((4 . something) (2 . maybe ) (3 . this ) (7 . last ) (5 . some))  I want it to be sorted after the car of each dotted pair starting with the lowest number...  ((2 . maybe)...</description>
<dc:creator>BastiL2001@[EMAIL PROTECTED]

</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-23T08:20:08+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82435.html">
<title>R6RS test suite</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82435.html</link>
<description>The R6RS test suite for PLT Scheme is written as a collection of R6RS libraries, and we hope that it can be useful to other R6RS implementors. Wed very much like to have R6RS implementors and users contribute to the test suite.  You can find the test...</description>
<dc:creator>Matthew Flatt ltmflatt@[EMAIL PROTECTED]...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-22T15:08:55+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82411.html">
<title>evaluater problem</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82411.html</link>
<description>I have to Write a procedure (rename exp) which renames all repeated declarations (parameters) in nested scopes. Modify =93eval-substitution.scm=94. ---------------------------------------------------------------------------= ---------- eval-substitut...</description>
<dc:creator>fooor.up@[EMAIL PROTECTED]

</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-22T02:50:53+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82407.html">
<title>How does Scheme know if a func is tail-recursive or not?</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82407.html</link>
<description>Scheme requires tail-call-optimization. But how does Scheme know or react? Because when I use tree-recursion DrScheme never complains.  According to : http://www.biglist.com/lists/lists.mulberrytech.com/dssslist/archives/199907/msg00389.html it s asl...</description>
<dc:creator>ssecorp ltcircularfunc@[EMAIL PROTECTED]...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-21T19:55:32+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82402.html">
<title>ANN: Larceny v0.962 Fluoridation (bug fix release benchmarkin</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82402.html</link>
<description>Larceny and Petit Larceny v0.962 are now available for download at http://larceny.ccs.neu.edu/  v0.962 fixes bugs in the v0.96 and v0.961 versions of the Fluoridation release without adding much in the way of new features.  For details, see      http...</description>
<dc:creator>William D Clinger ltcesura17@[EMAIL PROT...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-21T12:19:07+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82393.html">
<title>Re: lambda and define</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82393.html</link>
<description>On 16 Lug, 22:27, Grant Rettke gret...@gmail.com wrote:   My understanding, after going through initial chapters of SICP, of   define was that it is lambda in disguise.   let is lambda in disguise )  This is probably confusing for a beginer so Ill ex...</description>
<dc:creator>Vend ltvend82@[EMAIL PROTECTED]
gt
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-21T02:58:51+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82383.html">
<title>remove items appearing in both lists</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82383.html</link>
<description>Given 2 lists Olist and Clist. I want to remove items that appears in both list. How best to do this?  Say,  (setq Olist (list a b c d e)) (setq Clist (list ee a d c bb))  i want the result to be like  (setq Olist (list b e)) (setq Clist (list ee bb)...</description>
<dc:creator>xahlee@[EMAIL PROTECTED]
 ltxahlee@[EMAI...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-20T07:14:51+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82382.html">
<title>let-values with macros....</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82382.html</link>
<description>Hello, Im trying to implement let-values, a kind of let that accepts a values parameter.  This is what Ive come up with:  define-macro letv bind                   .                   body     def loop l              f         if null? cdr l          ...</description>
<dc:creator>IDK ltulvinge@[EMAIL PROTECTED]
gt
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-20T06:05:07+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82380.html">
<title>creating a list from console inputs</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82380.html</link>
<description>I want to create a list from numbers that the user gives through keyboard. The list is done when user hits a predefined key e.g q. Any good ideas?</description>
<dc:creator>Nickfor35@[EMAIL PROTECTED]

</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-20T01:03:08+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82365.html">
<title>Possibly OT: Reasoned Schemer</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82365.html</link>
<description>Hi,  Im slogging through The Reasoned Schemer, by Friedman, Byrd, and Kiselyov. After getting lost a couple times, and restarting the book a couple times, Im seeing the hint of a suggestion of enlightenment in its pages. At least I was until I came a...</description>
<dc:creator>Jason ltjemeade@[EMAIL PROTECTED]
gt
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-18T19:25:48+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82360.html">
<title>an (object, object) - object mapping, please?</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82360.html</link>
<description>I wonder, what are the common ways of implementing an (object, 	object) - object mapping in Scheme (of various flavours)?  	Say, I have a set of `shop objects, a set of `item ones, and 	then a mapping, like: (shop, item) - stock.  With an option to 	...</description>
<dc:creator>Ivan Shmakov ltivan@[EMAIL PROTECTED]
gt...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-18T23:55:29+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82359.html">
<title>Using mutable lists to implement cache</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82359.html</link>
<description>Hi  During my experimenting with the Scheme, I found that the I/O ports are not so usable with recursive programming approach. The ports encapsulate a state - once you read a character it cannot be re-read once again and another read-char call return...</description>
<dc:creator>sergei.emantayev@[EMAIL PROTECTED]

</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-18T09:31:26+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82355.html">
<title>ANN: Mosh 0.0.5 released - A Fast R6RS Scheme interpreter</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82355.html</link>
<description>Mosh is A Fast R6RS Scheme interpreter written in C++. http://code.google.com/p/mosh-scheme/  About This Release ------------------  Added experimental R6RS batch mode using psyntax.   run with -b option like cd r6rs-examples mosh -b hello.ss   There...</description>
<dc:creator>higepon lthigepon@[EMAIL PROTECTED]
gt
</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-18T00:54:14+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82353.html">
<title>Learning purposes Scheme interpreterer with support for</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82353.html</link>
<description>I need recommendation for a good for learning interpreter that supports continuations?  Also what do you think of stackless python strategy for implementing continuations http://www.stackless.com/spcpaper.htm#_Toc470444064 ?  thanks bobi</description>
<dc:creator>Slobodan Blazeski ltslobodan.blazeski@[E...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-18T00:21:27+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82348.html">
<title>285 Magellan GPS 28558</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82348.html</link>
<description>=======================================        Get A GPS Today At A Low Price!!        http://www.GPSTakesYou.com =======================================  GPS Devices  www.gpstakesyou.com  =======================================     2X[k \p\)Q\]wCIm ...</description>
<dc:creator>Morales ltermorales@[EMAIL PROTECTED]
gt...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-16T17:27:15+00:00</dc:date>
</item>

<item rdf:about="http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82344.html">
<title>Re: lambda and define</title>
<link>http://www.talkaboutprogramming.com/group/comp.lang.scheme/messages/82344.html</link>
<description> My understanding, after going through initial chapters of SICP, of  define was that it is lambda in disguise.  let is lambda in disguise )</description>
<dc:creator>Grant Rettke ltgrettke@[EMAIL PROTECTED]...</dc:creator>
<dc:subject>Discussion</dc:subject>
<dc:date>2008-07-16T13:27:14+00:00</dc:date>
</item>


<textinput rdf:about="http://talkaboutprogramming.com/group/comp.lang.scheme/search.html">
<title>Search talkaboutprogramming.com Scheme</title>
<description>Search talkaboutprogramming.com Scheme</description>
<name>q</name>
<link>http://talkaboutprogramming.com/group/comp.lang.scheme/search.html</link>
</textinput>

</rdf:RDF>
