Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/takluyver/calcurust

A sample Jupyter kernel in Rust
https://github.com/takluyver/calcurust

jupyter jupyter-kernels rpn-calculator rust

Last synced: 4 days ago
JSON representation

A sample Jupyter kernel in Rust

Awesome Lists containing this project

README

        

**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.