Added readme

main
Der Teufel 2021-12-12 13:57:26 +01:00
parent 5c5cbb98f2
commit b20eb6085b
1 changed files with 26 additions and 0 deletions

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# Algol of Code
My solutions for AoC 2021
## Requirements
- `GNU MARST Algol-to-C Translator`
- `gcc` (to change the C compiler used change `./compile.sh`)
## Running the solutions
First run
```shell
./prepare.sh
```
Run it after each change to `./src/util.a60` to rebuild `./obj/util.o`
To compile a solution run
```shell
./compile.sh dayNN
```
substituting `dayNN` with the correct day.
To run the solution with the day's data in `./data/dayNN.txt`
```shell
./run.sh dayNN
```