bc-envelope-cli 0.6.1

Gordian Envelope Command Line Tool.
1
2
3
4
5
6
7
8
9
#![allow(unused)]
fn main() {
let result = std::fs::read_to_string("test.txt");
let content = match result {
    Ok(content) => { content },
    Err(error) => { panic!("Can't deal with {}, just exit here", error); }
};
println!("file content: {}", content);
}