my_example/
lib.rs

1pub fn say_hello() {
2	println!("你好,世界!");
3}
4#[cfg(test)]
5mod tests {
6	#[test]
7	fn test_say_hello() {
8		crate::say_hello();
9	}
10}