meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| start_hacking [2020/02/27 21:08] – revusky | start_hacking [2023/05/06 17:25] (current) – revusky | ||
|---|---|---|---|
| Line 2: | Line 2: | ||
| - | JavaCC 21 is based on the idea that things should //just work//. If all you want to do is use the tool, all you need to do is download the following two files: | + | CongoCC |
| - | [[https://javacc.com/download/javacc.jar]] | + | [[https://parsers.org/download/congocc.jar]] |
| - | [[https:// | + | |
| - | Put both files in the same directory somewhere | + | There are no dependencies (aside from a JDK) and it should be runnable via: |
| - | java -jar < | + | |
| - | That’s all, folks! | + | java -jar congocc.jar < |
| + | |||
| + | That’s all, folks! The above command-line should work on PC, Mac, or Linux. | ||
| The rest of the page is for the small minority of people who want to hack the code. The most basic requirements are: | The rest of the page is for the small minority of people who want to hack the code. The most basic requirements are: | ||
| Line 20: | Line 20: | ||
| You should be able to check out and build the code like so: | You should be able to check out and build the code like so: | ||
| - | git clone https:// | + | git clone https:// |
| - | cd javacc21 | + | cd congo |
| ant | ant | ||