1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
pub mod console { pub fn out<Text: Into<String>> (text: Text) { print!("{}", text.into()); } pub fn outln<Text: Into<String>> (text: Text) { print!("{}\n", text.into()); } } #[cfg(test)] mod tests { //use super::*; #[test] fn test_example() { assert_eq!(5, 5); } }