act-file 0.0.1

Parser for Act-files.
Documentation
1
2
3
4
5
6
7
8
use std::process::Command;

fn main() {
    Command::new("make")
        .status()
        .unwrap();
    println!("act-file parser lib successfully generated");
}