コード例 #1
0
ファイル: Interpreter.cs プロジェクト: nnsun/cslox
 public object VisitLiteralExpr(Expr.Literal expr)
 {
     return(expr.value);
 }