WhileLoopInterpreter/README.md

9 lines
279 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
## parse with antlr
2023-12-23 13:01:58 +00:00
`antlr4 -package parser.grammar -o main/java/parser -no-listener -visitor grammar/Loop.g4`
2023-12-23 22:28:37 +00:00
## create executable
`mvn clean compile assembly:single`