mirror of
https://github.com/anoma/juvix.git
synced 2024-12-01 00:04:58 +03:00
13 lines
130 B
Plaintext
13 lines
130 B
Plaintext
module TerminatingF;
|
|
|
|
axiom A : Type;
|
|
|
|
terminating
|
|
f : A -> A -> A
|
|
|
|
| x y := g x (f x x);
|
|
|
|
g : A -> A -> A
|
|
| x y := f x x;
|
|
|