<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>comp.lang.scheme Google Group</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme</link>
  <description>The Scheme Programming language.</description>
  <language>en</language>
  <item>
  <title>Re: Wraith Scheme 1.36 released (shareware parallel R5 Scheme for Macintosh)</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/4cff5bf42b8f5b77/fe7d37e311cfa666?show_docid=fe7d37e311cfa666</link>
  <description>
  On Tue, 17 Nov 2009 01:10:40 -0800 (PST), Jay Reynolds Freeman &lt;br&gt; This link is rerouted to the Web site at the following URL when &lt;br&gt; clicked: &lt;br&gt; Home &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://web.mac.com/jay_reynolds_freeman/My/Home.html&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; This link is incorrect, and actually leads to the same above-mentioned &lt;br&gt; Web site when clicked. The correct link follows:
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/4cff5bf42b8f5b77/fe7d37e311cfa666?show_docid=fe7d37e311cfa666</guid>
  <author>
  dekudekup...@yahoo.com
  (Benjamin L. Russell)
  </author>
  <pubDate>Fri, 11 Nov 2009 17:14:45 UT
</pubDate>
  </item>
  <item>
  <title>Re: Any Chez Scheme/Petite Chez Scheme-specific mailing list/newsgroups?</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/cd808ef4d1be178f?show_docid=cd808ef4d1be178f</link>
  <description>
  I&#39;m sure most of us would appreciate some good topics here. If they are &lt;br&gt; about Chez, I know I would. ;-) &lt;br&gt; Aaron W. Hsu
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/cd808ef4d1be178f?show_docid=cd808ef4d1be178f</guid>
  <author>
  arcf...@local
  (Aaron W. Hsu)
  </author>
  <pubDate>Fri, 11 Nov 2009 15:37:28 UT
</pubDate>
  </item>
  <item>
  <title>Re: mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/9c5bb6dfaf582921?show_docid=9c5bb6dfaf582921</link>
  <description>
  Just a little update: I can also place the (delay (force )) inside the &lt;br&gt; definition of fps-int. This way the definitions of fps-sin and fps-cos &lt;br&gt; become very elegant again...
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/9c5bb6dfaf582921?show_docid=9c5bb6dfaf582921</guid>
  <author>
  dsno...@nospam.nospam
  (Daniel)
  </author>
  <pubDate>Fri, 11 Nov 2009 15:06:31 UT
</pubDate>
  </item>
  <item>
  <title>Re: mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/49c0414ef6149f9b?show_docid=49c0414ef6149f9b</link>
  <description>
  I did have a look at the CL code. I am still trying to understand how it &lt;br&gt; works. &lt;br&gt; That would be an option. However, when I use define-stream-constructor &lt;br&gt; for the definition of stream-int, the definitions of sine and cosine &lt;br&gt; become more elegant: &lt;br&gt; (define fps-sin &lt;br&gt; (fps-int fps-cos)) &lt;br&gt; (define fps-cos &lt;br&gt; (fps-subtract fps-one (fps-int fps-sin)))
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/49c0414ef6149f9b?show_docid=49c0414ef6149f9b</guid>
  <author>
  dsno...@nospam.nospam
  (Daniel)
  </author>
  <pubDate>Fri, 11 Nov 2009 14:55:15 UT
</pubDate>
  </item>
  <item>
  <title>Re: mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/ed2e4fe416894d36?show_docid=ed2e4fe416894d36</link>
  <description>
  By the way, did you look at the CL code? It uses odd streams, but avoids &lt;br&gt; the problem you bumped into by wrapping the sine and cosine definitions &lt;br&gt; in a delay (which is not completely unlike even streams). In short, you &lt;br&gt; can use your initial code, but change the final part to: &lt;br&gt; (define stream-cos-promise
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/ed2e4fe416894d36?show_docid=ed2e4fe416894d36</guid>
  <author>
  vmage...@gmail.com
  (Vitaly Magerya)
  </author>
  <pubDate>Fri, 11 Nov 2009 13:10:42 UT
</pubDate>
  </item>
  <item>
  <title>Re: mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/fa69ca3898fecf3d?show_docid=fa69ca3898fecf3d</link>
  <description>
  For the interested: &lt;br&gt; I added a Scheme section to &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://rosettacode.org/wiki/Formal_Power_Series&quot;&gt;[link]&lt;/a&gt;. The solution still &lt;br&gt; uses odd streams. Maybe sometime I will try to implement a solution &lt;br&gt; using even streams. &lt;br&gt; Daniel
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/fa69ca3898fecf3d?show_docid=fa69ca3898fecf3d</guid>
  <author>
  dsno...@nospam.nospam
  (Daniel)
  </author>
  <pubDate>Fri, 11 Nov 2009 11:43:10 UT
</pubDate>
  </item>
  <item>
  <title>Re: Any Chez Scheme/Petite Chez Scheme-specific mailing list/newsgroups?</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/e0105836ff50f1b8?show_docid=e0105836ff50f1b8</link>
  <description>
  On Thu, 26 Nov 2009 20:15:15 -0600, Aaron W. Hsu &amp;lt;arcfide@local&amp;gt; &lt;br&gt; wrote: &lt;br&gt; It seems that the issue probably boils down to one of a combination of &lt;br&gt; both quality and quantity of posts. People shouldn&#39;t need to go to &lt;br&gt; the plt-scheme mailing list to enjoy the same combination of quality &lt;br&gt; and quantity of posts about a Scheme implementation as exists there.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/e0105836ff50f1b8?show_docid=e0105836ff50f1b8</guid>
  <author>
  dekudekup...@yahoo.com
  (Benjamin L. Russell)
  </author>
  <pubDate>Fri, 11 Nov 2009 02:59:22 UT
</pubDate>
  </item>
  <item>
  <title>Re: Any Chez Scheme/Petite Chez Scheme-specific mailing list/newsgroups?</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/10959c53be916a9c?show_docid=10959c53be916a9c</link>
  <description>
  Indeed, there is a lot of quality issues, but I wonder how much of that &lt;br&gt; is simply because people don&#39;t care to put quality in. I think sometimes &lt;br&gt; that people see a noisy group and don&#39;t realize that they can filter out &lt;br&gt; much of the noise.So they try to go elsewhere, until that becomes too &lt;br&gt; popular and the noise shows up again.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/10959c53be916a9c?show_docid=10959c53be916a9c</guid>
  <author>
  arcf...@local
  (Aaron W. Hsu)
  </author>
  <pubDate>Fri, 11 Nov 2009 02:19:18 UT
</pubDate>
  </item>
  <item>
  <title>Re: Any Chez Scheme/Petite Chez Scheme-specific mailing list/newsgroups?</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/dbdc12db343bf05e?show_docid=dbdc12db343bf05e</link>
  <description>
  What makes you think that adding a new group will make a difference? If &lt;br&gt; there isn&#39;t any traffic, it is because people aren&#39;t posting. Post a &lt;br&gt; question about Chez, and see if something happens. &lt;br&gt; I don&#39;t see the problem here. &lt;br&gt; If you think that you&#39;re going to get more traffic with a more specific &lt;br&gt; group, I don&#39;t think you&#39;ll find it. There isn&#39;t a ready made cohesive
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/dbdc12db343bf05e?show_docid=dbdc12db343bf05e</guid>
  <author>
  arcf...@local
  (Aaron W. Hsu)
  </author>
  <pubDate>Fri, 11 Nov 2009 02:15:15 UT
</pubDate>
  </item>
  <item>
  <title>[nausicaa&#39;s library of the week] Nausicaa/CURL 2009-11-26 tag 0.1a0</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/c3dc44f2ee547fdf/8d077ac4891029d2?show_docid=8d077ac4891029d2</link>
  <description>
  Nausicaa/cURL &lt;br&gt; ============= &lt;br&gt; Nausicaa/cURL is a distribution of Scheme libraries for R6RS &lt;br&gt; Scheme implementations; it provides bindings for the cURL C &lt;br&gt; language library. It is built upon the Nausicaa/Scheme &lt;br&gt; package, making use of its foreign-functions interface. &lt;br&gt; cURL is a tool to transfer data to or from a server, using
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/c3dc44f2ee547fdf/8d077ac4891029d2?show_docid=8d077ac4891029d2</guid>
  <author>
  mrc....@gmail.com
  (Marco Maggi)
  </author>
  <pubDate>Thu, 11 Nov 2009 22:03:17 UT
</pubDate>
  </item>
  <item>
  <title>Re: Any Chez Scheme/Petite Chez Scheme-specific mailing list/newsgroups?</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/26ceed4386e87e3c?show_docid=26ceed4386e87e3c</link>
  <description>
  On Thu, 26 Nov 2009 17:06:40 +0900 &lt;br&gt; Im my experience the PLT mailing lsit has by far the most traffic of &lt;br&gt; all Scheme-related discussion ressources. So it is not really &amp;quot;even&amp;quot;. &lt;br&gt; Or he could just use comp.lang.scheme? &lt;br&gt; So splitting off a comp.lang.scheme.chez-scheme group, would lead to &lt;br&gt; more discussion than there is comp.lang.scheme? Must be some kind of
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/8893805f1dded1a7/26ceed4386e87e3c?show_docid=26ceed4386e87e3c</guid>
  <author>
  ma...@xivilization.net
  (Marek Kubica)
  </author>
  <pubDate>Thu, 11 Nov 2009 16:41:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/7681321c4df7631f?show_docid=7681321c4df7631f</link>
  <description>
  Thanks a lot for your reply. I guess I didn&#39;t try it like this, because &lt;br&gt; apply works on lists. I oversaw the fact that streams are also lists. &lt;br&gt; Very nice! It works perfectly like this. I still need to read up on &lt;br&gt; define-syntax. &lt;br&gt; So it seems that even streams are somehow more elegant than the odd &lt;br&gt; ones. I will try to work out how this problem can be solved with odd
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/7681321c4df7631f?show_docid=7681321c4df7631f</guid>
  <author>
  dsno...@nospam.nospam
  (Daniel)
  </author>
  <pubDate>Thu, 11 Nov 2009 14:14:43 UT
</pubDate>
  </item>
  <item>
  <title>Re: mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/d8331e5323fcbd59?show_docid=d8331e5323fcbd59</link>
  <description>
  Is this what you&#39;re looking for? &lt;br&gt; (define (stream-add . streams) &lt;br&gt; (apply stream-map + streams)) &lt;br&gt; Both stream-map and stream-int are functions, not macros, so stream-sin &lt;br&gt; needs to be evaluated prior to function call; thus the error. What you &lt;br&gt; need is to delay the evaluation of stream-sin variable till it&#39;s defined.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/d8331e5323fcbd59?show_docid=d8331e5323fcbd59</guid>
  <author>
  vmage...@gmail.com
  (Vitaly Magerya)
  </author>
  <pubDate>Thu, 11 Nov 2009 13:03:12 UT
</pubDate>
  </item>
  <item>
  <title>Re: Different evaluation of nested define and &quot;global&quot; define</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/9de9a8635aea8eb3/e0f11dfa24ad3fcc?show_docid=e0f11dfa24ad3fcc</link>
  <description>
  The second define is like (set! money (- mody 10)) &lt;br&gt; Now set! and define are quite different. &lt;br&gt; (define var value) &lt;br&gt; The value is evaluated in an environment including tjhe new binding of &lt;br&gt; var. &lt;br&gt; (set! var value) &lt;br&gt; The value is computed. If it refers to the var, the old value is used. &lt;br&gt; Here first a new binding is made for money. The old binding is
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/9de9a8635aea8eb3/e0f11dfa24ad3fcc?show_docid=e0f11dfa24ad3fcc</guid>
  <author>
  jos.k...@telefonica.net
  (jos koot)
  </author>
  <pubDate>Thu, 11 Nov 2009 10:33:40 UT
</pubDate>
  </item>
  <item>
  <title>mutually recursive streams</title>
  <link>http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/7b059070cecda34e?show_docid=7b059070cecda34e</link>
  <description>
  Hi group, &lt;br&gt; I recently started learning Scheme. At the moment I am playing with &lt;br&gt; streams / lazy lists. More specifically, I am trying to solve the &lt;br&gt; problem described at &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://rosettacode.org/wiki/Formal_Power_Series&quot;&gt;[link]&lt;/a&gt;. &lt;br&gt; The idea is to use lazy lists for the Taylor series expansion of &lt;br&gt; functions. These should then be used to define the sine and cosine
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.lang.scheme/browse_frm/thread/1b55cd86efa68900/7b059070cecda34e?show_docid=7b059070cecda34e</guid>
  <author>
  dsno...@nospam.nospam
  (Daniel)
  </author>
  <pubDate>Thu, 11 Nov 2009 10:11:42 UT
</pubDate>
  </item>
  </channel>
</rss>
