camxes-rs 1.1.1

Lojban PEG parser with semantic analysis - integrated camxes parser and tersmu semantic engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
    // Access the private validate_word through morph
    let test_words = vec![
        "nin,mu",
        "ninmu", 
        "mi",
        "i",
        "ai",
        ".i.ai.i.ai.o",
    ];
    
    for word in test_words {
        let result = camxes_rs::morphology::morph(word);
        println!("{:20} -> {:?}", word, result);
    }
}