n3-parser 0.3.5

Super-Simple semantic neural network model parser.
1
2
3
4
5
6
7
8
#[test]
fn test_extern_model() {
  const MODEL: &str = "
extern [ExternModel]
";

  n3_parser::parser::parse_file(MODEL).unwrap();
}