I'm trying to learn F# by diving straight in and attempting to convert some C# code to it. One of the things I'm rewriting is part of an async method, which awaits a call to HttpClient's GetAsync without using the result. That is:
await httpClient.GetAsync("http://www.example.com");
Below is the only thing I've tried which doesn't get the red squigglies. While I assume it's valid, it does create a variable which I'd probably want to avoid.
let! ignoreme = Async.AwaitTask <| httpClient.GetAsync("http://www.example.com")
How should this be done?