//! 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.
pub use Interpreter;
pub use BytecodeBackend;
pub use *;
pub use StubBackend;