-
Notifications
You must be signed in to change notification settings - Fork 52
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
33 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
|
||
% -- Misc --------------------------------------------------------- | ||
|
||
% [coq.info ...] Prints an info message | ||
external type coq.info variadic any prop. | ||
|
||
% [coq.notice ...] Prints a notice message | ||
external type coq.notice variadic any prop. | ||
|
||
% [coq.say ...] Prints a notice message | ||
external type coq.say variadic any prop. | ||
|
||
% [coq.warn ...] Prints a generic warning message | ||
external type coq.warn variadic any prop. | ||
|
||
% [coq.warning Category Name ...] | ||
% Prints a warning message with a Name and Category which can be used | ||
% to silence this warning or turn it into an error. See coqc -w command | ||
% line option | ||
external type coq.warning string -> string -> variadic any prop. | ||
|
||
% [coq.error ...] Prints and *aborts* the program. It is a fatal error for | ||
% Elpi and Ltac | ||
external type coq.error variadic any prop. | ||
|
||
% [coq.version VersionString Major Minor Patch] Fetches the version of Coq, | ||
% as a string and as 3 numbers | ||
external pred coq.version o:string, o:int, o:int, o:int. | ||
|
||
|
||
|
||
|