aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 33f2d8155b682fcf4c4f3222425bb7afb4812bed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
mod messages;
mod machine;
mod noise;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}