link
import { link } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/free.ts";Create a Link combining two Free structures.
@example
import { link, node } from "./free.ts";
const first = node(1);
const second = node(2);
const combined = link(first, second);
console.log(combined); // { tag: "Link", first: { tag: "Node", value: 1 }, second: { tag: "Node", value: 2 } }