narust 0.0.1

A Rust reproduction of OpenNARS (under development)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Some blanket code and tests
//! * 🚩【2024-07-14 23:17:09】样板代码,用于注册主分支
//!   * 🏗️待后续整体完工后,再从其它分支项目迁移(158等)

pub fn main() {}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test_main() {
        main();
    }
}