Rust 語言之旅 目錄

從檔案來的字串常量

如果你有一些非常長的文字,可以考慮使用巨集 (marco) include_str! 將字串從本地檔案讀到你的程式裡:

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