Rust language (1) How read text file
Trivial task
We read a text file.
Rust 1.55
A bit of documentation:
https://doc.rust-lang.org/std/fs/index.html
https://doc.rust-lang.org/std/fs/fn.read_to_string.html
use std::fs;
fn main() {
let contents = fs::read_to_string("./cfg.json").expect("some wrong");
println!("{}",contents);
}