blob: ffdf1d5ed93e407ff0e3d19636adb2f930e1a36e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(* Silly tests for automatic auto file handling *)
Goal (A,B:Prop)(and A B) -> (and B A).
Intros A B H.
Induction H.
Apply conj.
Assumption.
Assumption.
Save and_comms_c.
|