summaryrefslogtreecommitdiff
path: root/lisp/src/lib.rs
blob: 60d0a4e831f31a37be467e09a09210850ff77a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod parser;
pub mod ast;

pub fn my_fn() -> bool {
    true
}

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

    #[test]
    fn it_works() {
        assert!(my_fn());
    }
}