#ifndef PRINTER_HH #define PRINTER_HH #include "expr.hh" #include class AstPrinter { public: std::string print(const Expr &expr); private: std::string parenthesize(const std::string &name, std::vector exprs); }; #endif