Files
scryer-prolog/src/prolog/mod.rs

25 lines
476 B
Rust

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