views:

213

answers:

1
+2  A: 

Hi Lucas

I dont think I implemented ExecuteFile correctly.

The easiest is just to grab hold of the load procedure.

Also the extension methods, make life easier.

Example

using IronScheme; // for extension methods
...
Callable load = "load".Eval<Callable>();
...
load.Call("myfile.ss");

I have updated the exception handling to give better error messages (I hope!).

leppie
Thanks! I'll try that.
Lucas Jones