10 lines
268 B
Rust
10 lines
268 B
Rust
#![feature(round_char_boundary)]
|
|
#![feature(exit_status_error)]
|
|
use compare::emacs_parse_org_document;
|
|
mod compare;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
emacs_parse_org_document("./org_mode_samples/footnote_definition/simple.org")?;
|
|
Ok(())
|
|
}
|