← Home ← Back to /g/

Thread 106390442

4 posts 4 images /g/
Anonymous No.106390442 >>106390486
>infects your entire codebase
Anonymous No.106390485
F# fags don't understand this. F# doesn't even have:

let foo = await func a b


Anything async needs to be wrapped in "computation blocks" which eliminate a lot of the elegance of ML:

let bar =
async {
let! foo = otherAsync a b /* Need to use ! syntax */
return somefunc foo /* Have to say "return" like a fucking neanderthal */
}


since async code makes up like 75% of functions in modern programs, most of your F# code ends up looking like wet shit
Anonymous No.106390486
>>106390442 (OP)
I don't get it.
Anonymous No.106390659
Why is async bad again?