$ coqtop -nois
Welcome to Coq 8.7.0 (October 2017)
Coq < Ltac i := idtac.
Toplevel input, characters 0-4:
> Ltac i := idtac.
> ^^^^
Error: Syntax error: illegal begin of vernac.
我正在“coqtop -nois”下重新开发“Coq.Init.Prelude”和“HoTT.Basics.Overture”以进行实践。我发现很难直接写表达式。这就是我想要使用战术的原因。我想知道为什么我不能使用“Ltac”。
答案 0 :(得分:5)
Ltac现在作为插件提供,您需要加载才能使用:
Declare ML Module "ltac_plugin".