jimtcl 0.2.0

Embed Jim Tcl in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Rust API for embedding Jim TCL.

pub use jimtcl_sys as sys;
#[cfg(feature = "cli")]
pub mod cli;
mod command;
pub mod error;
pub mod interp;
pub mod object;
pub mod prelude;
#[cfg(feature = "serde")]
mod serde;

pub use error::{JimError, JimResult};
pub use interp::Interp;
pub use object::JimObject;