tcljupyter is a kernel in Tcl only for use with Jupyter Notebooks.
Try it out at https://mybinder.org/v2/gh/mpcjanssen/tcljupyter/binder?filepath=examples%2Fexample.ipynb . NB this will create a temporary notebook which will be removed after some idle time.
There is also a Dockerfile in the repository and a docker compose with a prebuilt image to easily deploy this for personal use.
Manually copy to a Jupyter data location jupyter --paths.
Then change the paths in kernel.json to match your machine.
The tcl used to run the init.tcl script should have the following available:
Most web client commands are supported. Only thing missing is reading from stdin with for example gets. Also interrupting the kernel will display the interruption message under the currently active cell (not the interrupted one).
If a cell ends with ; the last result is not displayed.
[L1 ]
For communication from kernel to session thread thread::send -async is being used. stdout and stderr are being intercepted by chan push
arjen - 2020-06-20 12:22:57
I am working on a notebook version of the Tcl Tutorial based on tcljupyter. Result at the moment: One page almost done (via a conversion script). Still a lot to do on this conversion but tcljupyter does what it ought to do :).