waspy 0.9.0

A Python interpreter written in Rust, designed for WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core functionality for the Waspy compiler.

pub mod config;
pub mod errors;
pub mod options;
pub mod parser;

pub use config::*;
pub use errors::*;
pub use options::*;