tree-sitter-lolcode 0.0.2

LOLCODE grammar for tree-sitter
Documentation
1
2
3
4
5
6
7
fn main() {
    let src_dir = std::path::Path::new("src");
    let mut c_config = cc::Build::new();
    c_config.include(src_dir);
    c_config.file(src_dir.join("parser.c"));
    c_config.compile("tree-sitter-lolcode");
}