Replies: 2 comments 2 replies
-
So this is a feature request for a |
Beta Was this translation helpful? Give feedback.
2 replies
-
Maybe you could write the menhir call as a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Suppose I want to build a programming language where parts of its tooling and whatnot are verified.
Naturally, I'd use
menhir
to build a parser and make use of the(menhir ...)
stanza to generate the parser.However, given the verification nature, I want to invoke
menhir --coq
, so the output file of menhir ends withv
instead ofml
. Then, by means of Coq's extraction mechanism, I want to actually build theml
file of the parser and use it in a minimal ocaml project that just invokes the extracted Coq functions.Here is an example repo: https://codeberg.org/dasnacl/MiniCalc
Beta Was this translation helpful? Give feedback.
All reactions