© 2026 Hedgehog Software, LLC
string | null
const getFoo = Effect.gen(function*() { let foo: string | null = null yield* Effect.sync(function() { foo = "Hello!" }) return foo })
getFoo
Effect.Effect<null>
Effect.Effect<string|null>