问题
Can someone please tell me the differences between
RequireName.Require ImportName.ImportName
?
回答1:
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 functionfin a moduleM, by doingImport M., you will only need to typefinstead ofM.f;Require Import: does bothRequireandImport.
来源:https://stackoverflow.com/questions/33854672/confused-by-coq-imports