Skip to content

Instantly share code, notes, and snippets.

@brunossn
Created June 2, 2018 01:32
Show Gist options
  • Save brunossn/bea95c470cc4e690f84a189fbdfbd6a7 to your computer and use it in GitHub Desktop.
Save brunossn/bea95c470cc4e690f84a189fbdfbd6a7 to your computer and use it in GitHub Desktop.
Download a webpage and save in disk in F#
open System.Net
open System.IO
let download (url: string) =
use wc = new WebClient()
wc.DownloadString(url)
let saveOnDisk fileName text =
File.WriteAllText(fileName, text)
[<EntryPoint>]
let main argv =
"http://www.pudim.com.br"
|> download
|> saveOnDisk "pudim.txt"
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment