//! Library template created with FerrisUp
/// Returns a greeting message
pubfnhello()-> String{"Hello from FerrisUp library template!".to_string()}#[cfg(test)]modtests{usesuper::*;#[test]fntest_hello(){assert_eq!(hello(),"Hello from FerrisUp library template!");}}