cppstreams 1.1.0

C++ streams in rust
Documentation
1
2
3
4
5
6
7
8
9
10
use cppstreams::{Cin, Cout, Endl};

#[allow(unused_must_use)]
fn main() {
    let mut name: String = String::new();

    Cin >> &mut name;

    Cout << "Hello, " << name << "!" << Endl;
}