Is there a way (or can anyone find a way) to import IronScheme into VS2010? I've already taken a look at this question, and I've done everything I could - I even edited the binary files involved to change the version numbers. My question: Does…
So basically I'm not comparing Scheme with Clojure here, I want to compare realizations. There are:
Clojure-clr which can be installed even using Visual Studio extension but it's still going a bit buggy for me to use it this way. After you create…
In the book "IronPython in Action," the author states that IronPython, unlike CPython, benefits from certain optimizations, both in the JIT and in the framework itself, that CPython cannot take advantage of. Consequently, IronPython is potentially…
According to Wikipedia:
"IronScheme, an upcoming Scheme implementation, was planning to build upon the DLR, but decided to abandon this idea because the DLR branch the project used became out of sync with the trunk, and also because the DLR,…
Though it says on the IronScheme codeplex site that a plugin is included for visual studio, I have no idea how to get ironscheme working with VS...
Is it possible? If so , how?
Thanks
I'm trying to use Scheme in a distributed system. The idea is that one process would evaluate some expressions and pass it on to another process to finish.
Example:
(do-stuff (f1 x) (f2 x))
would evaluate to
(do-stuff res1 (f2 x))
in the first…
We are trying to construct a log file using IronScheme, and we have written a code for it using racket. It works fine in racket, but IronScheme throws an error. This is what we have so far:
(define…
I'm trying to add a plugin architecture to my C# app. I've chosen IronScheme as the language, and also because it's built on the DLR, which should make it easier to embed.
On the Codeplex Wiki, they have the following example.
I changed it…
Is there a way to "reset" the IronScheme engine?
I'm essentially aiming to ensure that successive calls to string.Eval() are executed independently.
For example, I want to be execute
"(define x 1.0) (+ x 5.0)".Eval()
then reset, and have the…
I am making a program in C# (using Visual Studio) which uses IronScheme, and this is a snippet of code I have.
exp = "(car '('(1 2 3) 4 5 6))";
System.Console.WriteLine(exp.Eval());
Basically, I want to get the first element of that list, which is…
I have been messing around with IronScheme and I am intrigued by it. I saw this post on creating WinForms in IronScheme, but any time I try to do reference a DLL like this:
(clr-reference System)
(clr-reference System.Data)
(clr-reference…
Is there any similar command such as cd, pwd which operate on current working directory in IronScheme? I want to get the directory which is used by (load "source.ss").
Besides, since IronScheme is a standard Scheme, I think the function works in…
I'm trying out xacc.ide because I'm interested in dabbling with IronScheme. I just can figure out how to start a new project. There's a whole menu for projects and dealing with them but there are only options to create "Blank File" and "File..."
How…
I have just get started in IronScheme , and I really want to know how to add another CLR DLL library in IronScheme. Since many other Iron Stuff have AddReference function to get this down to work instantly , I can't find it in IronScheme. The…