diff --git a/cclox_src/interpreter.cc b/cclox_src/interpreter.cc index de932c7..a9b60dc 100644 --- a/cclox_src/interpreter.cc +++ b/cclox_src/interpreter.cc @@ -57,6 +57,6 @@ void run(const std::string &code) { if (expression) { AstPrinter printer{}; - std::cout << printer.print(*expression) << '\n'; + std::cout << printer.print(*expression) << '\n'; } }