<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>IronScheme Forum Rss Feed</title><link>http://www.codeplex.com/IronScheme/Thread/List.aspx</link><description>IronScheme Forum Rss Description</description><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Thanks Leppie. That works nicely. I also discovered that my console app couldn't handle multiple lines of input (doh!) I made it read input a little bit more intelligently, looking for an matching number of open and close brackets before submitting the input to the evaluator.&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Mon, 08 Apr 2013 02:45:11 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130408024511A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;I managed to recreate the error :)&lt;br /&gt;
&lt;br /&gt;
What effectively happens is that you are calling:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;ii.Eval(&amp;quot;(import (ironscheme clr)) (let ((str (clr-new String \&amp;quot;\&amp;quot;))) str&amp;quot;);&lt;/code&gt;&lt;/pre&gt;

The evaluator can only handle a single (S) expression and you are passing 2 in.&lt;br /&gt;
&lt;br /&gt;
This is easy to handle. Just wrap your input string with the following:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;input = string.Format(&amp;quot;(begin {0} \n)&amp;quot;, input);&lt;/code&gt;&lt;/pre&gt;

My previous assumption was incorrect :)&lt;br /&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Sat, 06 Apr 2013 08:42:32 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130406084232A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Sorry mis-post.&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Sat, 06 Apr 2013 03:19:58 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130406031958A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Thanks Leppie that works great. I can now control the game at runtime from an IronScheme console!&lt;br /&gt;
&lt;br /&gt;
In my little console application that uses the &lt;code&gt;InteractionService&lt;/code&gt; I have been catching exceptions and printing them to the output. This works well for fairly well-known problems like undefined symbols, which typically print out something like this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;amp;undefined
&amp;amp;message: &amp;quot;attempted to use undefined symbol&amp;quot;
&amp;amp;irritants: (beh)&lt;/code&gt;&lt;/pre&gt;

But I also see a lot of &lt;code&gt;SyntaxErrorException&lt;/code&gt; being thrown which are spit out a large stack trace and aren't very helpful. Do you have any words of wisdom for my approach here? I am currently in the process of building IronScheme from source so that I can attach the debugger and break when the exceptions are being thrown. I'm hoping this will help me discover what I've done wrong and potentially if there is a way of making those error messages a bit nicer.&lt;br /&gt;
&lt;br /&gt;
If you're interested, this is an example issue:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;(import (rnrs) (ironscheme clr))
(let ((str (clr-new String &amp;quot;&amp;quot;)))
  str)&lt;/code&gt;&lt;/pre&gt;

If I run this with the provided IronScheme console I see:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;Unhandled CLR exception during evaluation:
CLR Exception: System.InvalidCastException
System.InvalidCastException: Unable to cast object of type 'System.String' to type 'System.Char[]'.
   at eval-core(031).Initialize(CodeContext )
   at #.ironscheme.exceptions::dynamic-wind(Object in, Object proc, Object out)
   at #.ironscheme.exceptions::dynamic-wind(Object in, Object proc, Object out)
   at IronScheme.Runtime.Builtins.CallWithCurrentContinuation(Object fc1)
   at IronScheme.Runtime.R6RS.Exceptions.WithClrExceptionHandler(Object handler, Object thunk)&lt;/code&gt;&lt;/pre&gt;

Which is quite helpful because it tells me what went wrong. But running it with my remote console app, I see:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;Microsoft.Scripting.SyntaxErrorException: Exception of type 'Microsoft.Scripting.SyntaxErrorException' was thrown.
   at Microsoft.Scripting.LanguageContext.CompileSourceCode(SourceUnit sourceUnit, CompilerOptions options, ErrorSink errorSink)
   at Microsoft.Scripting.Hosting.ScriptEngine.CompileSourceUnit(SourceUnit sourceUnit, IScriptModule module)
   at Microsoft.Scripting.Hosting.ScriptEngine.CompileExpression(String expression, IScriptModule module)
   at IronScheme.RuntimeExtensions.EvalWithEnvironment(String expr, String importspec, Object[] args)
   at IronScheme.Remoting.Server.InteractionService.EvalInternal(String expr, String importspec, Object[] args)&lt;/code&gt;&lt;/pre&gt;

Which is less useful. &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Edit:&lt;/strong&gt; I'm thinking that using the InteractionService might not be the best way to go. Would it be difficult to modify the provided IronScheme console to connect to a remote server?&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Sat, 06 Apr 2013 03:14:20 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130406031420A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Yes, define will be problematic with arguments. Will see if I can fix that :)      &lt;br /&gt;
&lt;br /&gt;
The better way would be to use parameters, and just set the value. Eg:&lt;br /&gt;
&lt;br /&gt;
In Scheme:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;(define some-object (make-parameter #f))&lt;/code&gt;&lt;/pre&gt;

From C#:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;quot;(some-object {0})&amp;quot;.Eval(instance);&lt;/code&gt;&lt;/pre&gt;

Then in Scheme you would use it like:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;(let ((o (some-object))) ...)&lt;/code&gt;&lt;/pre&gt;

This way Scheme knows about the variable.  &lt;br /&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Fri, 05 Apr 2013 05:49:08 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130405054908A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Thanks Leppie, that did the trick. I did come across one irregularity. I had to do this to get it to work:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;quot;(define some-object '())&amp;quot;.Eval();
&amp;quot;(set! some-object {0})&amp;quot;.Eval(instance);&lt;/code&gt;&lt;/pre&gt;

When I tried to pass the CLR object to the &lt;em&gt;define&lt;/em&gt; evaluation it threw this error:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;{&amp;amp;message: &amp;quot;no expression in body&amp;quot;
&amp;amp;syntax:
  form: ()
  subform: #f
}&lt;/code&gt;&lt;/pre&gt;

Not sure why it did this? It seems like a reasonable call to me..&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Fri, 05 Apr 2013 05:45:18 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130405054518A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
&lt;br /&gt;
There are various ways to share data.&lt;br /&gt;
&lt;br /&gt;
If you want to to pass the an instance (of anything/object) from C#, you can do:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;quot;(some-proc {0})&amp;quot;.Eval(instance);&lt;/code&gt;&lt;/pre&gt;

some-proc will receive the instance as is. {0} is effectively bound to that instance.&lt;br /&gt;
&lt;br /&gt;
If you want to get some data from Scheme, you can just call a normal CLR method/property:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;(let ((o (clr-static-call Foo Bar))) ...)&lt;/code&gt;&lt;/pre&gt;

If you have a different scenario, let me know :)&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;br /&gt;
leppie&lt;br /&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Fri, 05 Apr 2013 04:22:13 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130405042213A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Hi Leppie,&lt;br /&gt;
&lt;br /&gt;
As a follow-up, I've been doing some prototyping embedding IronScheme into a running game and using it to execute code and commands at run-time. The problem I am now struggling with is sharing objects from the running application in the interactive Scheme environment. I understand that you can use &lt;em&gt;clr-new&lt;/em&gt; to create instances of CLR types. Is it possible to create an object in C# and then share it with the IronScheme environment?&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Fri, 05 Apr 2013 04:15:12 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130405041512A</guid></item><item><title>New Post: IronScheme Installable?</title><link>http://ironscheme.codeplex.com/discussions/439044</link><description>&lt;div style="line-height: normal;"&gt;Will there be an &amp;quot;installable&amp;quot; for the newer builds soon?&lt;br /&gt;
&lt;/div&gt;</description><author>mayureshkathe</author><pubDate>Thu, 04 Apr 2013 04:28:24 GMT</pubDate><guid isPermaLink="false">New Post: IronScheme Installable? 20130404042824A</guid></item><item><title>New Post: How about a roadmap?</title><link>http://ironscheme.codeplex.com/discussions/434367</link><description>&lt;div style="line-height: normal;"&gt;how about support for creating graphical elements, like &lt;a href="http://showui.codeplex.com/" rel="nofollow"&gt;http://showui.codeplex.com/&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>mayureshkathe</author><pubDate>Thu, 04 Apr 2013 04:13:37 GMT</pubDate><guid isPermaLink="false">New Post: How about a roadmap? 20130404041337A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;Haha, yes I guess you are right, JIT-compiled languages aren't really real-time, or so-to-speak. Probably what I was after was an indication of it's runtime performance in comparison to C#, which would be the language I would typically be using to work with MonoGame.&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Mon, 25 Mar 2013 12:34:11 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130325123411P</guid></item><item><title>New Post: How about a roadmap?</title><link>http://ironscheme.codeplex.com/discussions/434367</link><description>&lt;div style="line-height: normal;"&gt;I have nothing specific planned at the moment.&lt;br /&gt;
&lt;br /&gt;
Feel free to suggest required features.&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;br /&gt;
leppie&lt;br /&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Mon, 25 Mar 2013 10:39:55 GMT</pubDate><guid isPermaLink="false">New Post: How about a roadmap? 20130325103955A</guid></item><item><title>New Post: 100% R6RS?</title><link>http://ironscheme.codeplex.com/discussions/434821</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
&lt;br /&gt;
Like previously discussed with you, making IronScheme 100% compliant (basically meaning full support for continuations) would break .NET interoperability.&lt;br /&gt;
&lt;br /&gt;
If you do that, you basically have just another Scheme, but losing out on the .NET interoperability niche.&lt;br /&gt;
&lt;br /&gt;
There is no way to make .NET continuation friendly unless you rewrite and recompile all of .NET to support it (say via CPS, if this is even possible for MSIL based bytecode).&lt;br /&gt;
&lt;br /&gt;
Cheers&lt;br /&gt;
&lt;br /&gt;
leppie&lt;br /&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Mon, 25 Mar 2013 10:38:12 GMT</pubDate><guid isPermaLink="false">New Post: 100% R6RS? 20130325103812A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div dir="ltr"&gt;It depends on your definition of 'real-time' :)
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div style=""&gt;If you feel C# is real-time, then yes, IronScheme would fall into the same category as long as you dont use `eval` during runtime.&lt;/div&gt;
&lt;div style=""&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div style=""&gt;But almost any language with a JIT compiler is not really strictly real-time :)&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br&gt;
&lt;br&gt;
&lt;div&gt;On Mon, Mar 25, 2013 at 11:43 AM, sonelliot &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:notifications@codeplex.com" target="_blank"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex"&gt;
&lt;div&gt;
&lt;p&gt;From: sonelliot&lt;/p&gt;
&lt;div&gt;I have been looking for an implementation of Scheme on the CLR that would be suitable for real-time applications. As a hobby I was going to experiment using Scheme for game development. It would be really cool to be able to use a .NET implementation since
 then I would have access to the amazing MonoGame!&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;Read the &lt;a href="http://ironscheme.codeplex.com/discussions/437865#post1020531" target="_blank"&gt;
full discussion online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To add a post to this discussion, reply to this email (&lt;a href="mailto:IronScheme@discussions.codeplex.com?subject=[IronScheme:437865]" target="_blank"&gt;IronScheme@discussions.codeplex.com&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;To start a new discussion for this project, email &lt;a href="mailto:IronScheme@discussions.codeplex.com" target="_blank"&gt;
IronScheme@discussions.codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are receiving this email because you subscribed to this discussion on CodePlex. You can
&lt;a href="https://ironscheme.codeplex.com/subscriptions/thread/project/edit" target="_blank"&gt;
unsubscribe or change your settings&lt;/a&gt; on codePlex.com.&lt;/p&gt;
&lt;p&gt;Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at
&lt;a href="http://codeplex.com" target="_blank"&gt;codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br clear="all"&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
-- &lt;br&gt;
&lt;a href="http://codeplex.com/IronScheme"&gt;http://codeplex.com/IronScheme&lt;/a&gt;&lt;br&gt;
&lt;a href="http://xacc.wordpress.com"&gt;http://xacc.wordpress.com&lt;/a&gt; &lt;/div&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Mon, 25 Mar 2013 10:27:22 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130325102722A</guid></item><item><title>New Post: Suitability for real-time applications</title><link>http://ironscheme.codeplex.com/discussions/437865</link><description>&lt;div style="line-height: normal;"&gt;I have been looking for an implementation of Scheme on the CLR that would be suitable for real-time applications. As a hobby I was going to experiment using Scheme for game development. It would be really cool to be able to use a .NET implementation since then I would have access to the amazing MonoGame!&lt;br /&gt;
&lt;/div&gt;</description><author>sonelliot</author><pubDate>Mon, 25 Mar 2013 09:43:39 GMT</pubDate><guid isPermaLink="false">New Post: Suitability for real-time applications 20130325094339A</guid></item><item><title>New Post: 100% R6RS?</title><link>http://ironscheme.codeplex.com/discussions/434821</link><description>&lt;div style="line-height: normal;"&gt;Umnn, what would it take to say &amp;quot;IronScheme is 100% R6RS compliant&amp;quot;?&lt;br /&gt;
&lt;/div&gt;</description><author>mayureshkathe</author><pubDate>Thu, 28 Feb 2013 10:20:18 GMT</pubDate><guid isPermaLink="false">New Post: 100% R6RS? 20130228102018A</guid></item><item><title>New Post: Windows UI development using IronScheme</title><link>http://ironscheme.codeplex.com/discussions/434642</link><description>&lt;div style="line-height: normal;"&gt;Wonder if IronScheme can do something like &lt;a href="http://showui.codeplex.com/" rel="nofollow"&gt;http://showui.codeplex.com/&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;</description><author>mayureshkathe</author><pubDate>Wed, 27 Feb 2013 06:29:05 GMT</pubDate><guid isPermaLink="false">New Post: Windows UI development using IronScheme 20130227062905A</guid></item><item><title>New Post: Using IronScheme with "Simply Scheme"</title><link>http://ironscheme.codeplex.com/discussions/434365</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div dir="ltr"&gt;The best I can recommend for IronScheme/R6RS is TSPL4.
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div style=""&gt;You can get the entire text at: &lt;a href="http://www.scheme.com/tspl4/"&gt;
http://www.scheme.com/tspl4/&lt;/a&gt;&lt;/div&gt;
&lt;div style=""&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div style=""&gt;BTW, Chez Petite also works on Windows.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br&gt;
&lt;br&gt;
&lt;div&gt;On Mon, Feb 25, 2013 at 10:19 AM, mayureshkathe &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:notifications@codeplex.com" target="_blank"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex"&gt;
&lt;div&gt;
&lt;p&gt;From: mayureshkathe&lt;/p&gt;
&lt;div&gt;leppie, not intending to belittle you nor flatter you, but, I believe IronScheme definitely has potential, just that there are very few people (only you I suppose) working on it at the moment, I intend to remedie that in the near future by joining your
 project (as I'd promised a while back). &lt;br&gt;
&lt;br&gt;
I would prefer to stick around with IronScheme, probably start-off with something simple like &amp;quot;The Little Schemer&amp;quot;, &amp;quot;The Seasoned Schemer&amp;quot; and &amp;quot;The Reasoned Schemer&amp;quot; and then head over to SICP.
&lt;br&gt;
&lt;br&gt;
Thanks. &lt;br&gt;
&lt;br&gt;
PS: I really &lt;em&gt;hate&lt;/em&gt; Racket, it's quite un-Windows like.&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;p&gt;Read the &lt;a href="http://ironscheme.codeplex.com/discussions/434365#post1006132" target="_blank"&gt;
full discussion online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To add a post to this discussion, reply to this email (&lt;a href="mailto:IronScheme@discussions.codeplex.com?subject=[IronScheme:434365]" target="_blank"&gt;IronScheme@discussions.codeplex.com&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;To start a new discussion for this project, email &lt;a href="mailto:IronScheme@discussions.codeplex.com" target="_blank"&gt;
IronScheme@discussions.codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are receiving this email because you subscribed to this discussion on CodePlex. You can
&lt;a href="https://ironscheme.codeplex.com/subscriptions/thread/project/edit" target="_blank"&gt;
unsubscribe or change your settings&lt;/a&gt; on codePlex.com.&lt;/p&gt;
&lt;p&gt;Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at
&lt;a href="http://codeplex.com" target="_blank"&gt;codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br clear="all"&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
-- &lt;br&gt;
&lt;a href="http://codeplex.com/IronScheme"&gt;http://codeplex.com/IronScheme&lt;/a&gt;&lt;br&gt;
&lt;a href="http://xacc.wordpress.com"&gt;http://xacc.wordpress.com&lt;/a&gt; &lt;/div&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Mon, 25 Feb 2013 08:55:03 GMT</pubDate><guid isPermaLink="false">New Post: Using IronScheme with "Simply Scheme" 20130225085503A</guid></item><item><title>New Post: Using IronScheme with "Simply Scheme"</title><link>http://ironscheme.codeplex.com/discussions/434365</link><description>&lt;div style="line-height: normal;"&gt;leppie, not intending to belittle you nor flatter you, but, I believe IronScheme definitely has potential, just that there are very few people (only you I suppose) working on it at the moment, I intend to remedie that in the near future by joining your project (as I'd promised a while back).&lt;br /&gt;
&lt;br /&gt;
I would prefer to stick around with IronScheme, probably start-off with something simple like &amp;quot;The Little Schemer&amp;quot;, &amp;quot;The Seasoned Schemer&amp;quot; and &amp;quot;The Reasoned Schemer&amp;quot; and then head over to SICP.&lt;br /&gt;
&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;br /&gt;
PS: I really &lt;em&gt;hate&lt;/em&gt; Racket, it's quite un-Windows like.&lt;br /&gt;
&lt;/div&gt;</description><author>mayureshkathe</author><pubDate>Mon, 25 Feb 2013 08:19:45 GMT</pubDate><guid isPermaLink="false">New Post: Using IronScheme with "Simply Scheme" 20130225081945A</guid></item><item><title>New Post: Using IronScheme with "Simply Scheme"</title><link>http://ironscheme.codeplex.com/discussions/434365</link><description>&lt;div style="line-height: normal;"&gt;
&lt;div dir="ltr"&gt;From what I gather, the best way to learn Scheme is via one of the Racket supported courses (SICP, HTDP, EOPL, etc).
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
&lt;div style=""&gt;Also Racket runs on Windows and has very nice debugger support.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;br&gt;
&lt;br&gt;
&lt;div&gt;On Mon, Feb 25, 2013 at 9:51 AM, mayureshkathe &lt;span dir="ltr"&gt;&amp;lt;&lt;a href="mailto:notifications@codeplex.com" target="_blank"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style="margin:0 0 0 .8ex; border-left:1px #ccc solid; padding-left:1ex"&gt;
&lt;div&gt;
&lt;p&gt;From: mayureshkathe&lt;/p&gt;
&lt;div&gt;Gah, which introductory book would you recommend? &lt;br&gt;
SICP seems quite tough, but, if it's much better supported than Simply Scheme, I'll walk the tough path willingly... :-)&lt;br&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;Read the &lt;a href="http://ironscheme.codeplex.com/discussions/434365#post1006119" target="_blank"&gt;
full discussion online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To add a post to this discussion, reply to this email (&lt;a href="mailto:IronScheme@discussions.codeplex.com?subject=[IronScheme:434365]" target="_blank"&gt;IronScheme@discussions.codeplex.com&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;To start a new discussion for this project, email &lt;a href="mailto:IronScheme@discussions.codeplex.com" target="_blank"&gt;
IronScheme@discussions.codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You are receiving this email because you subscribed to this discussion on CodePlex. You can
&lt;a href="https://ironscheme.codeplex.com/subscriptions/thread/project/edit" target="_blank"&gt;
unsubscribe or change your settings&lt;/a&gt; on codePlex.com.&lt;/p&gt;
&lt;p&gt;Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at
&lt;a href="http://codeplex.com" target="_blank"&gt;codeplex.com&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;br clear="all"&gt;
&lt;div&gt;&lt;br&gt;
&lt;/div&gt;
-- &lt;br&gt;
&lt;a href="http://codeplex.com/IronScheme"&gt;http://codeplex.com/IronScheme&lt;/a&gt;&lt;br&gt;
&lt;a href="http://xacc.wordpress.com"&gt;http://xacc.wordpress.com&lt;/a&gt; &lt;/div&gt;
&lt;/div&gt;</description><author>leppie</author><pubDate>Mon, 25 Feb 2013 08:04:05 GMT</pubDate><guid isPermaLink="false">New Post: Using IronScheme with "Simply Scheme" 20130225080405A</guid></item></channel></rss>