scryer-prolog 0.10.0

A modern Prolog implementation written mostly in Rust.
Documentation
1
2
3
4
5
6
7
fn main() -> std::process::ExitCode {
    #[cfg(target_arch = "wasm32")]
    return std::process::ExitCode::SUCCESS;

    #[cfg(not(target_arch = "wasm32"))]
    return scryer_prolog::run_binary();
}