fll_rs/
lib.rs

1// TODO enable more linting rules
2
3pub mod error;
4pub mod graphics;
5pub mod input;
6pub mod lego;
7pub mod math;
8pub mod movement;
9pub mod robot;
10pub mod types;
11
12#[cfg(test)]
13mod tests {
14    #[test]
15    fn it_works() {
16        let result = 2 + 2;
17        assert_eq!(result, 4);
18    }
19}