//! Code generation backends for Ling.
//!
//! The default build compiles to Ling bytecode only.
//! Enable the `llvm` feature for native code generation via LLVM 18.
/// Opaque MIR program handle passed to backends.
/// All backends implement this trait.
pub use BytecodeBackend;
pub use WasmBackend;