On Thu, 16 Mar 2006 20:16:07 -0700
"Pierce, Greg" <Gre...@ls...> wrote:
> Hi Mo,
>
> Is there any plans to support Tcl_CreateSlave? I would
> love to be able to create a slave interpreter and register
> Java commands for that slave.
You can already do that:
set slave [interp create]
$slave eval {set var 0}
There is no Java level API like the Tcl_CreateSlave method, but you
can just evaluate the commands at runtime.
cheers
Mo DeJong
|