Conversation

What's something about you wish you knew more about? It doesn't have to be technical per se. It could be history, why design decisions were made, or just technical questions! I'll try to turn one of the questions into a blog post
22
32
Oh, sorry, I did not mean performance, I meant having some kind of pure core logic and IO at the edge of the system, like how you do pure FP in scala (that is, by discipline).
2
I try push IO out of my core logic in Rust, but there's no real way to enforce this. You can use dependency injection to do sort of effects and handlers stuff, but that gets a bit ick. It will be interesting to see if folks figure out ways to commandeer async/await for that.
1
1