RosettaCodeData/Task/HTTP/F-Sharp/http-1.fs

6 lines
142 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let wget (url : string) =
use c = new System.Net.WebClient()
c.DownloadString(url)
printfn "%s" (wget "http://www.rosettacode.org/")