Rust 语言之旅 目录

文件中的字符串常量

如果你需要使用大量文本,可以尝试用宏 include_str! 来从本地文件中导入文本到程序中:

let hello_html = include_str!("hello.html");
Mascot Ferris