aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tuto0/_CoqProject4
-rw-r--r--tuto0/theories/Demo.v8
2 files changed, 11 insertions, 1 deletions
diff --git a/tuto0/_CoqProject b/tuto0/_CoqProject
index ca0c0588a4..dd93e1fa79 100644
--- a/tuto0/_CoqProject
+++ b/tuto0/_CoqProject
@@ -2,7 +2,9 @@
-I src
theories/Loader.v
+theories/Demo.v
+
src/tuto0_main.ml
src/tuto0_main.mli
src/g_tuto0.ml4
-src/tuto0_plugin.mlpack \ No newline at end of file
+src/tuto0_plugin.mlpack
diff --git a/tuto0/theories/Demo.v b/tuto0/theories/Demo.v
new file mode 100644
index 0000000000..bdc61986af
--- /dev/null
+++ b/tuto0/theories/Demo.v
@@ -0,0 +1,8 @@
+From Tuto0 Require Import Loader.
+
+HelloWorld.
+
+Lemma test : True.
+Proof.
+hello_world.
+Abort.