Comparing Effect.runSync to Non-Effect Promise Counter
I decided to do a simple test of effect, for a simple takes about 1.8 - 2.17 ms. While the non effect promise counter part takes about 0.019 - 0.021 ms
Effect.runSync(Effect.sync(() => "some string"))await (() => Promise.resolve("some string"))()