Require Export Basics.This Export statement (and the similar Import statement) reads a ".vo" file, in this case Basics.vo. You create this by compiling Basics.v, either using the coqc program, or inside CoqIDE while visiting Basics.v, using the Compile/Compile-Buffer menu tab.
If you are using VSCode, see here for compilation instructions.
It will suffice to compile the Basics.v that we gave you originally; when Induction imports Basics, it doesn't care whether the theorems were admitted or proved. When we grade your homework, we will always use the Basics.vo that we build from the original Basics.v.
The button labeled "Check All Submitted Files" will tell you,
In addition, for the first few assignments you must not use the "auto" tactic; the "Check" program will notice those too.
One of the proofs in Basics.v is "Write an informal proof of ...". If you forget to do this one, the "Check" program won't notice that for you!
The "Check" program does not determine your grade! It just helps you make sure you've completed all the relevant tasks. Your proofs will be graded for correctness (which is mostly handled automatically) and style: The clarity of your presentation, the clarity of your induction hypotheses, and so on. In the first homework there's not much room for you to be creative, but that will change as your proofs grow more sophisticated.
All of this applies to the .v files in future homeworks.