-
This repository contains all the programming homeworks from Jingke Li's adaptation of CS 558 at Portland State University (fall 2018).
-
All the solutions are written in Scala
-
To run a file, compile using
scalac <filename>.scalaand use interpreterscala <class>with appropriate command line options. -
To run full assignments: (for example)
make testint3 && ./run TestInterp3- modify
testint3to desired interpreter/compiler model.
- modify
-
The master branch points to implementations done using stack storage model
-
The heap-storage branch points to implementations done using heap allocation.