blob: a66f490afbd15e0b61ed2f13a7bf5d84c8d87084 [file] [log] [blame]
pub fn world() -> String {
"world".to_owned()
}
#[cfg(test)]
mod test {
#[test]
fn test_world() {
assert_eq!(super::world(), "world");
}
}