7 lines
106 B
Coq
7 lines
106 B
Coq
Require Export UniMath.Foundations.All.
|
|
|
|
Lemma myfirstlemma : 2 + 2 = 4.
|
|
Proof.
|
|
apply idpath.
|
|
Defined.
|
|
|