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
: load an external library (typically from the standard library or theuser-contribs/
folder);Import
: imports the names in a module. For example, if you have a functionf
in a moduleM
, by doingImport M.
, you will only need to typef
instead ofM.f
;Require Import
: does bothRequire
andImport
.