1
 2
 3
 4
 5
 6
 7
 8
 9
10
/// Main mod with program and macros, all reexported.
#[macro_use]
pub mod program;

/// Common ops for programs, not automatically exported because their names easily conflict with
/// existing variables.
pub mod common_ops;
mod register_expression;

pub use program::*;