jimtcl 0.1.0

Embed Jim Tcl in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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;

pub use error::JimResult;
pub use interp::Interp;
pub use object::JimObject;