Hi.
I mentioned that you don't have any reference counting functions in Neko
Inteface API. How it works? Don't I need to Incref/Decref pointer after
doing operations?
Now if you --really-- want to access globals you can watch how the Neko
toplevel is doing (see neko/src/neko/Console.nml source) although that's
a bit tricky since global names are not kept at runtime. Maybe extending
the http://nekovm.org/doc/view/module api would help here.
I need to expose "eval" and "execute" function for Neko to Python. I
see in Console.nml that you using a lot of Neko sources. I think that
this is very simple for you to write such functions in C
value eval(const char *expression, |value *exception);
|void execute(const char *expression, |value *exception);
|Please, help me with that.
--
Neko : One VM to run them all
(http://nekovm.org)