Tour of Rust 목차

파일에서 문자열 가져오기

매우 큰 텍스트가 필요하다면 include_str! macro를 이용하여 로컬 파일에서 텍스트를 읽어오는 것을 고려해보세요:

let 00_html = include_str!("00_ko.html");
Mascot Ferris