///Prints something to `stdout`. /// /// Example test: /// ``` /// assert_eq!(9, 9) /// ``` pub fn hello_func() { println!("Hi from rust-lib!") } #[test] fn test_1and1eq2() { assert_eq!(1 + 1, 2) }