This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package scalaworld.interpreters | |
/* | |
This file shows a simple language, an interpreter, and two | |
partial evaluators for that language, along with a profiling suite. | |
*/ | |
trait Expr // denotes a Vector[Double] => Vector[Double] | |
object Expr { |