2024-10-04 19:37:09 +02:00
|
|
|
# LCI
|
|
|
|
|
|
2025-02-04 17:51:37 +01:00
|
|
|
[Report](report/document.pdf) is located in the [report/](report/) folder.
|
|
|
|
|
[Seminar Slides](seminar/document.pdf) is located in the [seminar/](seminar/) folder.
|
2025-01-17 00:53:18 +01:00
|
|
|
|
|
|
|
|
## To install prerequisites
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
opam install dune menhir clap
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## To run the tests
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
dune runtest
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## To run an executable
|
|
|
|
|
|
|
|
|
|
```
|
2025-01-17 00:54:00 +01:00
|
|
|
dune exec miniImpInterpreterReg -- -i bin/sum.miniimp -r 4 -v 100 -e
|
2025-01-17 00:53:18 +01:00
|
|
|
```
|