Questions tagged [ironscheme]

IronScheme is a R6RS Scheme implementation in .NET.

IronScheme is a R6RS Scheme implementation in .NET written by leppie.

21 questions
1
vote
1 answer

How to invoke IronScheme clr-call with type parameter

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…
Frank Ruben
  • 105
  • 7
1
vote
1 answer

IronScheme: How do you 'or' enumeration entries

How do you 'or' enum entries in IronScheme, ex: (import (rnrs) …
Scrooch
  • 213
  • 1
  • 6
1
vote
1 answer

Calling closure using ironscheme

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)) …
Robert
  • 197
  • 11
1
vote
1 answer

why repeated '(load' does not update definitions?

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…
nsg
  • 539
  • 1
  • 6
  • 18
0
votes
1 answer

return list of list on c# from IronScheme

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)" …
0
votes
1 answer

Use lisp or ironscheme in C# or web?

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…
A.A
  • 1,138
  • 1
  • 16
  • 29
1
2