directinterpreter.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 56 行

SCALA
56
字号
object directInterpreter {  type Name = String;  trait Term;  case class Var(x: Name) extends Term;  case class Con(n: int) extends Term;  case class Add(l: Term, r: Term) extends Term;  case class Lam(x: Name, body: Term) extends Term;  case class App(fun: Term, arg: Term) extends Term;  trait Value;  case object Wrong extends Value;  case class Num(n: int) extends Value;  case class Fun(f: Value => Value)extends Value;  def showval(v: Value): String = v match {    case Wrong => "<wrong>"    case Num(n) => n.toString()    case Fun(f) => "<function>"  }  type Environment = List[Pair[Name, Value]];  def lookup(x: Name, e: Environment): Value = e match {    case List() => Wrong    case Pair(y, b) :: e1 => if (x == y) b else lookup(x, e1)  }  def add(a: Value, b: Value): Value = Pair(a, b) match {    case Pair(Num(m), Num(n)) => Num(m + n)    case _ => Wrong  }  def apply(a: Value, b: Value) = a match {    case Fun(k) => k(b)    case _ => Wrong  }  def interp(t: Term, e: Environment): Value = t match {    case Var(x) => lookup(x, e)    case Con(n) => Num(n)    case Add(l, r) => add(interp(l, e), interp(r, e))    case Lam(x, t) => Fun(a => interp(t, Pair(x, a) :: e))    case App(f, t) => apply(interp(f, e), interp(t, e))  }  def test(t: Term): String =     showval(interp(t, List()));  val term0 = App(Lam("x", Add(Var("x"), Var("x"))), Add(Con(10), Con(11)));  def main(args: Array[String]) =     System.out.println(test(term0));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?