4 lines
98 B
FSharp
4 lines
98 B
FSharp
#light
|
|
let wget (url : string) =
|
|
let c = new System.Net.WebClient()
|
|
c.DownloadString(url)
|