[![crates.io](https://img.shields.io/crates/v/executeevcxr.svg)][execute_evcxr] [![crates.io](https://img.shields.io/crates/d/executeevcxr.svg)][execute_evcxr]

Execution of [evcxr]-flavored Rust

Further [evcxr] can refer to the evaluation context, to Jupyter kernel for Rust programming language, or to its supported script-like syntax.

Example of [evcxr]-flavored Rust

```rust,norun :dep image = "0.23" :dep evcxrimage = "1.1" // In a pure Rust project, the dependencies above would be specified in Cargo.toml use evcxr_image::ImageDisplay;

image::ImageBuffer::from_fn(256, 256, |x, y| { if (x as i32 - y as i32).abs() < 3 { image::Rgb([0, 0, 255]) } else { image::Rgb([0, 0, 0]) } }) ```

At the moment of writing, the original [evcxr kernel] supports a lot but not all 1 features of Rust. This crate has been born as a temporary solution to the problem.

Note on [evcxr]-flavored Rust

The syntax supported by [evcxr kernel], as opposed to pure Rust, is implementation-defined. As a result, the same [evcxr]-flavored script can be executed differently by [execute_evcxr] and [evcxr] itself. In case of discrepancies, the behavior of [evcxr] is considered correct and the deviation on the side of [execute_evcxr] must be treated a bug, unless stated otherwise.

Note on limitations

For library developers

This is a README for library users. There's a separate DEV-README.md with information that can be relevant only to library developers.