Compare commits

..

No commits in common. "598245457e4adc11c8e9e3bc57a50d3fe7651c1e" and "2e0bc66f8891373fbbf2bad6f4c9d0ce85dc018f" have entirely different histories.

View File

@ -7,17 +7,4 @@ fn main() {
} else { } else {
println!("Couldn't connect to server..."); println!("Couldn't connect to server...");
} }
loop {
let mut buffer = String::new();
match std::io::stdin().read_line(&mut buffer){
Ok(_n) => {
println!("{}", buffer);
}
Err(_error) =>{
println!("Fehlerhafte Eingabe!");
break;
}
}
}
} // the stream is closed here } // the stream is closed here