slicec 0.3.2

The Slice parser and other core components for Slice compilers.
Documentation
1
2
3
4
5
6
7
8
// Copyright (c) ZeroC, Inc.

extern crate lalrpop;

fn main() {
    // Recursively finds any files ending with `.lalrpop` in the `src` directory and generates parsers from them.
    lalrpop::process_root().unwrap();
}