Http call using F# and HttpClient
It took me a few tries to finally call an HTTP endpoint using F#.I've ended up with this code:
let result =
async {
let client = new HttpClient()
let url = "https://api.frankfurter.app/latest?amount=10.99&from=USD&to=PLN"
...
blog.ciechowski.net1 min read