6 lines
142 B
Forth
6 lines
142 B
Forth
|
|
let wget (url : string) =
|
||
|
|
use c = new System.Net.WebClient()
|
||
|
|
c.DownloadString(url)
|
||
|
|
|
||
|
|
printfn "%s" (wget "http://www.rosettacode.org/")
|