aprender 0.67.0

Next-generation ML framework in pure Rust — `cargo install aprender` for the `apr` CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! An include!()-pulled reader: no `mod part;` declares this file, so its row
//! must name the includer's module (`inc`), not `gen::part`.
pub fn included_reader() -> bool {
    std::fs::read_to_string("scripts/part_baseline.txt").is_ok()
}

#[cfg(test)]
mod part_tests {
    #[test]
    fn included_module_reads_the_tree() {
        let _ = std::fs::read_to_string("scripts/part_baseline.txt");
    }
}