//! Rust API for embedding Jim TCL.
//!
//! To use the Jim interpreter, create an [Interp] and evaluate Tcl code, add
//! commands, etc.
//!
//! ```rust
//! use jimtcl::Interp;
//! let interp = Interp::new()?;
//! interp.eval("puts {Hello, world}")?;
//! # Ok::<(), jimtcl::JimError>(())
//! ```
pub use jimtcl_sys as sys;
pub use ;
pub use Interp;
pub use JimObject;