geml 1.1.26

A simple Generator-orientated ML parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(duration_as_u128)]
extern crate geml;

use geml::GemlFile;
use std::path::Path;
use std::time::{Instant};

fn main() {
    let application_start = Instant::now();
    println!("{:?}", GemlFile::from_path(&Path::new("test.geml")).unwrap());
    println!("Application took {}ms.", application_start.elapsed().as_millis());
}