© 2026 Hedgehog Software, LLC
export const increment = (x: number) => { return Effect.sync(() => { return x + 1; }); }; export const increment = Effect.gen(function* (x: number) { return x + 1 })