Confused by Coq imports

前端 未结 1 460
春和景丽
春和景丽 2021-01-18 10:45

Can someone please tell me the differences between

  • Require Name.
  • Require Import Name.
  • Impor
相关标签:
1条回答
  • 2021-01-18 11:25
    • 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.
    0 讨论(0)
提交回复
热议问题