项目作者: takluyver

项目描述 :
A sample Jupyter kernel in Rust
高级语言: Rust
项目地址: git://github.com/takluyver/calcurust.git
创建时间: 2015-05-10T21:29:49Z
项目社区:https://github.com/takluyver/calcurust

开源协议:

下载


Calcurust is a Jupyter kernel, written in Rust, implementing a very simple RPN calculator (i.e. 6 7 * will evaluate to 42).

In the src/ directory, messaging.rs contains most of the functions to communicate with Jupyter, and main.rs contains
the RPN implementation and the main functions integrating the functionality.

This was written mainly as a project to learn Rust, but it also serves as an example of implementing a Jupyter kernel
in a language other than Python. I don’t intend to add much complexity, so it can remain as a simple example.