1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#![allow(clippy::trivial_regex)]
// FIXME: Write documentation for the unsafe functions.
#![allow(clippy::missing_safety_doc)]

#[allow(non_upper_case_globals)]
#[allow(non_camel_case_types)]
#[allow(non_snake_case)]
pub mod nk {
    include!(concat!(env!("OUT_DIR"), "/nuke-sys.rs"));
}

#[macro_use]
extern crate prettytable;
#[macro_use]
extern crate lazy_static;
// #[macro_use]
// pub mod clone_inner;
#[macro_use]
pub mod error;
#[macro_use]
pub mod utils;
#[macro_use]
pub mod perr;
#[macro_use]
pub mod chasm;
#[macro_use]
pub mod nkgc;
#[macro_use]
pub mod r8vm;
#[macro_use]
pub mod ast;
pub mod sintern;
pub mod fmt;
pub mod sym_db;
pub mod subrs;
pub mod compile;
pub mod sexpr_parse;
//pub mod tests;
pub mod tok;
pub mod nuke;
//pub mod asm_parse;
//pub mod arg_parse_tests;