const Circle = S.struct({
kind: S.literal("circle"),
radius: S.number,
});
const circle = ctor(Circle)({ radius: 3 }); // no need to specify kind
const Circle = S.struct({
kind: S.literal("circle"),
radius: S.number,
});
const circle = ctor(Circle)({ radius: 3 }); // no need to specify kind