-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# False | ||
# Falso | ||
A proof of false. | ||
|
||
This is an implementation in Coq of the [Falso](http://inutile.club/estatis/falso/) proof system. | ||
|
||
## Use | ||
Install with OPAM for Coq: | ||
|
||
opam repo add coq-stable https://github.com/coq/repo-stable.git | ||
opam install coq:falso | ||
|
||
In a tedious development: | ||
|
||
Require Import Falso.All. | ||
|
||
Lemma hard : forall (A : Prop), A. | ||
destruct falso. | ||
Qed. | ||
|
||
Print Assumptions hard. |