Is it possible to put together a computation expression builder that can sequence two or more expressions without putting do! in front of each one?
If I've read the relevant section of the manual correctly, this should be possible through the builder's Combine method. However, my Combine method doesn't appear to be used; instead, I get a compiler warning suggesting that I use ignore to discard the result.
For instance, given an F# State monad, I'd like to be able to do this:
let hello who = State (fun lines -> lines @ [sprintf "hello %s" who])
let m = state {
hello "world"
hello "F#"
}
let l = Execute m []
// l should now contain ["hello world"; "hello F#"]