Cryptostasis
Cryptostasis

Reputation: 1216

Confused by Coq imports

Can someone please tell me the differences between

?

Upvotes: 7

Views: 393

Answers (1)

Clarus
Clarus

Reputation: 178

  • Require: load an external library (typically from the standard library or the user-contribs/ folder);
  • Import: imports the names in a module. For example, if you have a function f in a module M, by doing Import M., you will only need to type f instead of M.f;
  • Require Import: does both Require and Import.

Upvotes: 9

Related Questions