blob: 7a166f3b9812422eef6aa185e2969228c73ad3d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
open Ltac_plugin
}
DECLARE PLUGIN "test_plugin"
{
let () = Mltop.add_known_plugin (fun () -> ()) "test_plugin";;
}
VERNAC COMMAND EXTEND Test CLASSIFIED AS SIDEFF
| [ "TestCommand" ] -> { () }
END
TACTIC EXTEND test
| [ "test_tactic" ] -> { Test_aux.tac }
END
|