WhileLoopInterpreter/README.md

9 lines
287 B
Markdown
Raw Normal View History

2023-12-23 22:28:37 +00:00
# Run the interpreter
`java -jar WHILEParser.jar <whileprogram> <x1Value> <x2Value> ...`
# Build it yourself
2023-12-27 22:23:57 +00:00
## create parser with antlr
`antlr4 -package parser.grammar -o main/java/parser/grammar -no-listener -visitor Loop.g4`
2023-12-23 13:01:58 +00:00
2023-12-23 22:28:37 +00:00
## create executable
`mvn clean compile assembly:single`