apiel 0.3.0

A subset of the APL programming language implemented in Rust. Exports a macro for evaluating APL expressions from Rust code, providing a way to solve some problems in a very concise manner.
Documentation
1
2
3
4
5
6
7
// This lint appears in generated code
#![allow(clippy::needless_question_mark)]

pub mod macros;
pub mod parse;

pub use parse::Env;