Skip to content

Commit

Permalink
init 2 runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Oct 27, 2023
1 parent ee1f82e commit a0e0851
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions coq-builtin-parsing-phase.elpi
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.




0 comments on commit a0e0851

Please sign in to comment.