RosettaCodeData/Task/HTTP/Rust/http-2.rust
2015-11-18 06:14:39 +00:00

12 lines
292 B
Text

extern crate hyper;
use std::io::Read;
use hyper::client::Client;
fn main() {
let client = Client::new();
let mut resp = client.get("http://rosettacode.org").send().unwrap();
let mut body = String::new();
resp.read_to_string(&mut body).unwrap();
println!("{}", body);
}