Rust language (1) How read text file

in #programing5 years ago

1_c.png

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);
}

Coin Marketplace

STEEM 0.05
TRX 0.33
JST 0.073
BTC 63138.71
ETH 1788.36
USDT 1.00
SBD 0.47