extern crate num; extern crate ordered_float; extern crate prolog_parser; #[macro_use] pub mod instructions; mod and_stack; #[macro_use] mod macros; #[macro_use] mod allocator; mod toplevel; pub mod machine; pub mod compile; mod arithmetic; mod codegen; mod copier; mod debray_allocator; mod fixtures; mod heap_iter; mod indexing; pub mod write; mod iterators; mod or_stack; pub mod heap_print; mod targets; pub mod read;