From b9d507b65092b5ad7ca410b02f5c6bf011a9b181 Mon Sep 17 00:00:00 2001 From: Adrien Vannson Date: Tue, 10 May 2022 10:31:30 +0200 Subject: [PATCH] Ajout de tactic.ml --- tactic.ml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tactic.ml diff --git a/tactic.ml b/tactic.ml new file mode 100644 index 0000000..b5b76c9 --- /dev/null +++ b/tactic.ml @@ -0,0 +1,5 @@ +open Structs;; + +type tactic = + | Intro of var_lambda + | Assumption;;