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
14
//! No `mod mystery;` declares this file and no include!() names it: the module
//! is UNRESOLVABLE, so the row falls back to the whole crate and the
//! derivation prints WARN unresolved-include.
pub fn mystery_reader() -> bool {
    std::fs::read_to_string("scripts/mystery_baseline.txt").is_ok()
}

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