1 2 3 4 5 6 7 8
pub const HELP_TEXT: &str = include_str!("../config/help.txt"); ///打印帮助信息 /// /// 这个信息是从txt文件读取的,打包时会嵌入到二进制文件中 pub fn print_help_info() { println!("{HELP_TEXT}"); }