We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http://www.cl.cam.ac.uk/~jrh13/hol-light/tutorial.pdf section 8.1 page 45
git clone https://github.com/jrh13/hol-light.git cd ./hol-light make
let hol_dir = "/home/martin/Downloads/hol-light";;
tutorial page 45
g '2 <= n /\ n <= 2 ==> f(2,2) + n < f(n,n) + 7';; e DISCH_TAC;;
^
Parse error: ';;' expected after [str_item](in [top_phrase])
The text was updated successfully, but these errors were encountered:
All HOL Light terms are contained within `` not ' '. The conversion from `` to '' sometimes happens when you're copying from e.g. a PDF.
`2 <= n /\ n <= 2 ==> f(2,2) + n < f(n,n) + 7` should work.
Sorry, something went wrong.
No branches or pull requests
http://www.cl.cam.ac.uk/~jrh13/hol-light/tutorial.pdf
section 8.1 page 45
git clone https://github.com/jrh13/hol-light.git
cd ./hol-light
make
use "hol.ml";;
let hol_dir = "/home/martin/Downloads/hol-light";;
tutorial page 45
g '2 <= n /\ n <= 2 ==> f(2,2) + n < f(n,n) + 7';;
e DISCH_TAC;;
g '2 <= n /\ n <= 2 ==> f(2,2) + n < f(n,n) + 7';;
Parse error: ';;' expected after [str_item](in [top_phrase])
The text was updated successfully, but these errors were encountered: