lazer/
lib.rs

1mod lazer;
2pub use lazer::*;
3
4#[cfg(test)]
5mod tests {
6    // Note this useful idiom: importing names from outer (for mod tests) scope.
7    use super::*;
8
9    #[test]
10    fn test_print() {
11        assert_eq!(3, 3);
12    }
13}