Open lorin opened 7 years ago
Totally agree that getting j-bob installed could be made much easier with better instructions.
@lorin Thanks for posting here and your blog post it really helped me get going. One small thing that tripped me up with your instructions was finding the binary downloads on the ACL2 site.
For future travellers, I downloaded the binaries from here: http://acl2s.ccs.neu.edu/acl2s/src/acl2/
This seemed to work for me (not using drracket):
raco pkg install dracula
#lang dracula
(include-book "j-bob-lang" :dir :teachpacks)
(include-book "j-bob" :dir :teachpacks)
;;first example using J-Bob
(J-bob/step (prelude)
'(car (cons 'ham '(cheese)))
'((() (car/cons 'ham '(cheese)))))
It took me a while to get up and running with J-Bob using the Dracula package. In particular:
When trying to use the "include-book" command in the Dr. Racket REPL, I'd get an error:
Eventually, I figured out how to do it, and I even wrote up a blog post. I recommend adding more detail to the README to make it easier on new users. I'm happy to submit a PR updating the README with the additional details.