I am working from this book http://www.seas.upenn.edu/~cis500/current/sf/lf-current/ which is an introduction to Coq and automatic theorem proving.
I first completed the Basics.v file, and compiled it in the same directory, producing Basics.vo. I then moved to working on Induction.v, and got an error when referencing the "evenb" function from Basics.v. The complete error text was this:
"The reference evenb was not found in the current environment."
Additionally, I am working on macOS, and it doesn't recognize the input "coqide" from the command line. I feel like this has something to do with my original problem of coq not recognizing the "evenb" reference. Previously, I was working in Coq only through an IDE and not the command line. Any ideas how to fix this?
Update
I would like to install a different version of Coq (8.6) since the book I am referencing has been designed specifically for that version, and I feel like that might solve the problem. If anyone has advice about the best way to do this, please let me know.