use std::fs::File; use std::io::Read; fn main() -> Result<(), Box<std::error::Error>> { let mut file = File::open("path/to/file")?; ...
確定! 回上一頁