[go: up one dir, main page]

comm/
lib.rs

1pub fn hello() {
2    println!("Hello")
3}
4
5#[cfg(test)]
6mod tests {
7    use super::*;
8
9    #[test]
10    fn it_works() {
11        hello()
12    }
13}