1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! The hello world crate

/// The integral function of this app. Prints "Hello, world!".
pub fn world() {
    println!("Hello, world!");
}

#[test]
fn test() {
    world();
}