modality-lang 0.1.6

Modality language lib
Documentation
1
2
3
4
5
6
7
use modality_lang::{parse_file_lalrpop, PropertySign};

fn main() {
    let path = std::env::args().nth(1).expect("Usage: parse_example <file>");
    let model = parse_file_lalrpop(&path).expect("Failed to parse file");
    println!("Parsed model: {:#?}", model);
}