1 2 3 4 5 6 7 8 9
use std::fs; fn main(){ let file_contents = fs::read_to_string("Cargo.toml").expect("open file failed"); println!("content={}",file_contents); println!("hello world"); }