import * as X from "../XPure"; import type { IO } from "./model"; /* * ------------------------------------------- * Unit IO * ------------------------------------------- */ /** * ```haskell * unit :: () -> IO () * ``` */ export const unit: () => IO = X.unit;