## 実行時に読み込み場合 [[std.fs.read_to_string]]を使う。 ```rust let content = std::fs::read_to_string(&path).expect("could not read file"); ``` 解析するときは[[Rustの文字列を改行区切りにする]]と便利。 ## コンパイル時に読み込む場合 [[std.include_str]]を使う。