Anonymous
8/26/2025, 4:58:36 PM
No.106390442
>>106390486
>infects your entire codebase
Anonymous
8/26/2025, 5:02:14 PM
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