Skip to main content

hello/
hello.rs

1//! This is a simple example to demonstrate the usage of this library.
2
3fn main() -> Result<(), minreq::Error> {
4    let response = minreq::get("http://example.com").send()?;
5    println!("{}", response.as_str()?);
6    Ok(())
7}