runFork be used inside effects? run* functions at the edges of your program, and never within effectsrunFork is a bit different in that it spawns a new fiber and runs it immediately, where the normal fork waits for the current fiber to yield or until Fiber.join is calledrunFork can be used inside effects, maybe consider not putting it under run* (confusing when the rest are very explictly not meant to be used in effects)forkNow or forkAndRun