summaryrefslogtreecommitdiff
path: root/repcore/src/lib.rs
blob: 589b61c94b84d14e65682bb5823a8f19793b4a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! This package implements the core algorithm of the entire
//! workspace: parsing with derivatives by means of regular nulling
//! languages.

pub mod grammar;

pub fn add(left: usize, right: usize) -> usize {
    left + right
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
}