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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
.TH COQTOP 1
.
.SH NAME
coqtop \- toplevel Coq system
.
.
.SH SYNOPSIS
.B coqtop
[
options
]
.
.SH DESCRIPTION
.
.B coqtop
is the toplevel system of Coq, for interactive use.
It reads phrases on the standard input, and prints results on the
standard output.
.
For batch-oriented use of Coq, see
.BR coqc (1).
.
.
.SH OPTIONS
.
.TP
.BR \-h , \ \-\-help
Help.
Will give you the complete list of options accepted by coqtop.
.
.TP
.BI \-I \ dir, \ \-\-include \ dir
Add directory
.I dir
in the include path.
.
.TP
.BI \-R \ dir\ coqdir
Recursively map physical
.I dir
to logical
.I coqdir.
.
.TP
.BI \-top \ coqdir
Set the toplevel name to be
.I coqdir
instead of Top.
.
.TP
.B \-nois
Start with an empty initial state.
.
.TP
.BI \-load\-ml\-source \ filename
Load ML file
.I filename.
.
.TP
.BI \-load\-ml\-object \ filename
Load ML object file
.I filenname.
.
.TP
.BI \-load\-vernac\-source \ filename, \ \-l \ filename
Load Coq file
.I filename.v.
(Load filename.)
.
.TP
.BI \-load\-vernac\-source\-verbose \ filename, \ \-lv \ filename
Load verbosely Coq file
.I filename.v.
(Load Verbose filename.)
.
.TP
.BI \-require \ lib
Load Coq library
.I lib.
(Require lib.)
.
.TP
.BI \-require-import \ lib, \ \-ri \ lib
Load Coq library
.I lib
and import it.
(Require Import lib.)
.
.TP
.BI \-require-export \ lib, \ \-re \ lib
Load Coq library
.I lib
and transitively import it.
(Require Export lib.)
.
.TP
.BI \-require-from \ root\ lib, \ \-rfrom \ root\ lib
Load Coq library
.I lib.
(From root Require lib.)
.
.TP
.BI \-require-import-from \ root\ lib, \ \-rifrom \ root\ lib
Load Coq library
.I lib
and import it.
(From root Require Import lib.)
.
.TP
.BI \-require-export-from \ root\ lib, \ \-refrom \ root\ lib
Load Coq library
.I lib
and transitively import it.
(From root Require Export lib.)
.
.TP
.BI \-load\-vernac\-object \ lib
Obsolete synonym of
.BR \-require .
.
.TP
.B \-where
Print Coq's standard library location and exit.
.
.TP
.B \-v
Print Coq version and exit.
.
.TP
.B \-q
Skip loading of rcfile (resource file) if any.
.
.TP
.BI \-init\-file \ filename
Set the rcfile to
.I filename.
.
.TP
.B \-batch
Batch mode (exits just after arguments parsing).
.
.TP
.B \-emacs
Tells Coq it is executed under Emacs.
.
.TP
.BI \-dump\-glob \ filename
Dump globalizations in file
.I filename
(to be used by
.BR coqdoc (1)).
.
.TP
.B \-impredicative\-set
Set sort Set impredicative.
.
.TP
.B \-dont\-load\-proofs
Don't load opaque proofs in memory.
.
.SH SEE ALSO
.
.BR coqc (1),
.BR coq-tex (1),
.BR coqdep (1)
.PP
.I
The Coq Reference Manual.
.PP
The Coq web site: http://coq.inria.fr
|