cirru_edn 0.7.5

Parser/Writer for Cirru EDN
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
  let test = "[] a b c )";
  match cirru_parser::parse(test) {
    Ok(_) => println!("Success"),
    Err(e) => {
      println!("Error Display: {e}");
      println!("\nError format_detailed:");
      println!("{}", e.format_detailed(Some(test)));
    }
  }
}