//! Contains three different backends by default
//!
//! The interpreter backend is intended to be the reference backend. It's extremely slow.
//!
//! The Bytecode backend is a good, usable backend that comes bundled. It's
//! reasonably performant and can actually be used in an actual application.
// mod interpreter;
// pub use interpreter::Interpreter;
pub use BytecodeBackend;
pub use *;
pub use StubBackend;
// TODO: JIT backend