5 ms·
Yes there is. What you do is have don't put any IO calls inside your pure functions, but rather pass in their results as parameters. Keep the impure code and t
by alexandercrohde 6y ago
Yes there is. What you do is have don't put any IO calls inside your pure functions, but rather pass in their results as parameters.
Keep the impure code and the pure code separated.
- pjmlp 6y agoBeautifully said, practically impossible unless the language imposes it as programming model and you have 100% control over the complete source code.