Files
scryer-prolog/src/prolog/mod.rs
2018-09-10 00:18:17 -06:00

25 lines
423 B
Rust

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;