geolog-zeta-fork/examples/geolog/iso_theory_test.geolog
2026-02-26 11:50:51 +01:00

10 lines
254 B
Plaintext

// Multi-parameter theory test (Iso from vision)
// First just try sorts as parameters
theory (X : Sort) (Y : Sort) Iso {
fwd : X -> Y;
bwd : Y -> X;
// Axioms would need chained function application...
// fb : forall x : X. |- x fwd bwd = x;
}