mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
11 lines
92 B
Plaintext
11 lines
92 B
Plaintext
|
module DuplicateClause;
|
||
|
|
||
|
axiom T : Type;
|
||
|
|
||
|
id : T → T := λ {
|
||
|
t := t
|
||
|
};
|
||
|
id t := t;
|
||
|
|
||
|
end;
|