// ets_tracing: off import * as T from "./deps.js" import { fromEffect } from "./fromEffect.js" /** * Lift a pure value into an effect */ export function succeed(a: A, __trace?: string) { return fromEffect(T.succeed(a), __trace) }