예제 #1
0
 public string VisitPrintStmt(Stmt.PrintStmt stmt)
 {
     return(Parenthesize("print", stmt.Expression));
 }
예제 #2
0
파일: Resolver.cs 프로젝트: mhorskaya/cslox
 public object VisitPrintStmt(Stmt.PrintStmt stmt)
 {
     Resolve(stmt.Expression);
     return(null);
 }