Scratchpad

Try anything. Same type checker and runtime as the lessons.

import { Effect } from "effect"

const program = Effect.gen(function* () {
  const n = yield* Effect.succeed(41)
  console.log(n + 1)
})

Effect.runPromise(program)
⌘/Ctrl + Enter
Press Run (or ⌘/Ctrl+Enter in the editor).