RosettaCodeData/Task/HTTP/V-(Vlang)/http.v

7 lines
139 B
Coq
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import net.http
fn main() {
resp := http.get("http://rosettacode.org/robots.txt") or {println(err) exit(-1)}
println(resp.body.str())
}