This implements a simple semantic analysis of Scheme expressions. The main goal here is to resolve all variables and prepare the intermediate representation. Further goals are gathering and interpreting all the constants used throughout the code. Here we only gather them, but do not really interpret them.
This implements a simple semantic analysis of Scheme expressions. The main goal here is to resolve all variables and prepare the intermediate representation. Further goals are gathering and interpreting all the constants used throughout the code. Here we only gather them, but do not really interpret them.
Closes #11.