state
import { state } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/state.ts";Construct a trivial State<E, A> from values E and A.
@example
import * as S from "./state.ts";
const state = S.state(1, 2);
const result = state(10); // [2, 1]