I'm trying to use IronScheme with the Open XML SDK to read an XLSX file.
The Open XML SDK API contains a method, which in C# is written as worksheetPart.Worksheet.Elements(), where passing the type parameter is helpful to filter the…
We would like to call a scheme closure from C# using IronScheme, but we keep getting an exception, saying "not a pair".
We would like to call the following Scheme code:
(define (create-robot name)
(let* (
(position (cons 0 0))
…
I have a file open in editor and a scheme running in a console window next to it.
Here is what is in the file:
(import (rnrs))
(define THIS "Hello")
(display THIS) ;; does not work if loaded
I edit definitions in a file, save it, then switch to…
I want return a list in Visual Studio but, only print IronScheme.Runtime.Cons on visual studio console.
I have this code
public void f1()
{
var exp = "(car '((1 (8 7 2) 3) 4 5 6))"; // this must eval as "(1 (8 7 2) 3)"
…
Hi i know that can use ironscheme in c#(visual studio) and i donlowd ironscheme from http://ironscheme.codeplex.com/ on my visual studio 2012 but i dont know how i can use with ironscheme in visual studio .for example i get this sample from…