blob: 4a4d1d815c3a4963094dbb09408f9c3776220c6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
Require Import Ltac2.Init.
Ltac2 @ external print : message -> unit := "ltac2" "print".
Ltac2 @ external of_string : string -> message := "ltac2" "message_of_string".
Ltac2 @ external of_int : int -> message := "ltac2" "message_of_int".
Ltac2 @ external of_ident : ident -> message := "ltac2" "message_of_ident".
Ltac2 @ external of_constr : constr -> message := "ltac2" "message_of_constr".
(** Panics if there is more than one goal under focus. *)
Ltac2 @ external of_exn : exn -> message := "ltac2" "message_of_exn".
(** Panics if there is more than one goal under focus. *)
Ltac2 @ external concat : message -> message -> message := "ltac2" "message_concat".
|