it_fits/
lib.rs

1/// initialize the library
2pub fn init() {
3
4}
5
6#[cfg(test)]
7mod tests {
8    #[test]
9    fn it_works() {
10        let result = 2 + 2;
11        assert_eq!(result, 4);
12    }
13}