Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Say hello to the world
pub fn say_hello() {
    println!("Hello, fufu!");
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        say_hello();
    }
}