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