예제 #1
0
파일: Interpreter.cs 프로젝트: nnsun/cslox
 public object VisitLiteralExpr(Expr.Literal expr)
 {
     return(expr.value);
 }