Support code for students (Python version).
The runtime.c
file needs to be compiled by doing the following
gcc -c -g -std=c99 runtime.c
This will produce a file named runtime.o
. The -g flag is to tell the
compiler to produce debug information that you may need to use
the gdb (or lldb) debugger.
https://github.com/IUCompilerCourse/IU-Fall-2021
python run-tests-dyn.py tests/dyn/add.py
python run-tests-lambda.py tests/lambda/add.py
python run-tests-lambda.py tests/lambda/add1.py
python run-tests-lambda.py tests/lambda/add2.py
python run-tests-lambda.py tests/func/add.py
# ( but dyn is not higher than lambda TODO check)
1. optimse
2. do the challenge exercises in the book